Searched refs:stx (Results 1 – 3 of 3) sorted by relevance
/io/ |
A D | tst-stat-time64.c | 68 struct statx stx; in do_test() local 78 TEST_COMPARE (stx.stx_dev_major, major (st.st_dev)); in do_test() 79 TEST_COMPARE (stx.stx_dev_minor, minor (st.st_dev)); in do_test() 80 TEST_COMPARE (stx.stx_ino, st.st_ino); in do_test() 81 TEST_COMPARE (stx.stx_mode, st.st_mode); in do_test() 82 TEST_COMPARE (stx.stx_nlink, st.st_nlink); in do_test() 83 TEST_COMPARE (stx.stx_uid, st.st_uid); in do_test() 84 TEST_COMPARE (stx.stx_gid, st.st_gid); in do_test() 85 TEST_COMPARE (stx.stx_rdev_major, major (st.st_rdev)); in do_test() 87 TEST_COMPARE (stx.stx_blksize, st.st_blksize); in do_test() [all …]
|
A D | tst-stat.c | 76 struct statx stx; in do_test() local 86 TEST_COMPARE (stx.stx_dev_major, major (st.st_dev)); in do_test() 87 TEST_COMPARE (stx.stx_dev_minor, minor (st.st_dev)); in do_test() 88 TEST_COMPARE (stx.stx_ino, st.st_ino); in do_test() 89 TEST_COMPARE (stx.stx_mode, st.st_mode); in do_test() 90 TEST_COMPARE (stx.stx_nlink, st.st_nlink); in do_test() 91 TEST_COMPARE (stx.stx_uid, st.st_uid); in do_test() 92 TEST_COMPARE (stx.stx_gid, st.st_gid); in do_test() 93 TEST_COMPARE (stx.stx_rdev_major, major (st.st_rdev)); in do_test() 95 TEST_COMPARE (stx.stx_blksize, st.st_blksize); in do_test() [all …]
|
A D | tst-statx.c | 78 struct statx stx = { 0, }; in both_implementations_tests() local 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() 87 struct statx stx = { 0, }; in both_implementations_tests() local 88 TEST_COMPARE (statx (AT_FDCWD, "/dev/null", 0, STATX_BASIC_STATS, &stx), 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() [all …]
|
Completed in 4 milliseconds