Lines Matching refs:dir_fd
20 static int dir_fd; variable
45 dir_fd = open (dirbuf, O_RDONLY | O_DIRECTORY); in prepare()
46 if (dir_fd == -1) in prepare()
58 int dupfd = dup (dir_fd); in do_test()
87 int fd = openat (dir_fd, "some-file", O_CREAT|O_RDWR|O_EXCL, 0666); in do_test()
120 if (faccessat (dir_fd, "some-file", F_OK, AT_EACCESS)) in do_test()
125 if (faccessat (dir_fd, "some-file", W_OK, AT_EACCESS)) in do_test()
132 if (faccessat (dir_fd, "some-file", X_OK, AT_EACCESS) == 0 in do_test()
139 if (fchmodat (dir_fd, "some-file", 0400, 0) != 0) in do_test()
145 if (faccessat (dir_fd, "some-file", R_OK, AT_EACCESS)) in do_test()
152 if (faccessat (dir_fd, "some-file", W_OK, AT_EACCESS) == 0 in do_test()
160 int dir_fd2 = dup (dir_fd); in do_test()
192 if (unlinkat (dir_fd, "some-file", 0) != 0) in do_test()
198 close (dir_fd); in do_test()