Lines Matching refs:st
80 struct stat64 st; in both_implementations_tests() local
81 xfstat (fd, &st); in both_implementations_tests()
82 TEST_COMPARE (stx.stx_mode, st.st_mode); in both_implementations_tests()
83 TEST_COMPARE (stx.stx_dev_major, major (st.st_dev)); in both_implementations_tests()
84 TEST_COMPARE (stx.stx_dev_minor, minor (st.st_dev)); in both_implementations_tests()
90 struct stat64 st; in both_implementations_tests() local
91 xstat ("/dev/null", &st); in both_implementations_tests()
92 TEST_COMPARE (stx.stx_mode, st.st_mode); in both_implementations_tests()
93 TEST_COMPARE (stx.stx_dev_major, major (st.st_dev)); in both_implementations_tests()
94 TEST_COMPARE (stx.stx_dev_minor, minor (st.st_dev)); in both_implementations_tests()
95 TEST_COMPARE (stx.stx_rdev_major, major (st.st_rdev)); in both_implementations_tests()
96 TEST_COMPARE (stx.stx_rdev_minor, minor (st.st_rdev)); in both_implementations_tests()