Lines Matching refs:dir_fd
18 static int dir_fd; variable
43 dir_fd = open (dirbuf, O_RDONLY | O_DIRECTORY); in prepare()
44 if (dir_fd == -1) in prepare()
56 int dupfd = dup (dir_fd); in do_test()
85 int fd = openat (dir_fd, "some-file", O_CREAT|O_RDWR|O_EXCL, 0666); in do_test()
109 if (linkat (dir_fd, "some-file", dir_fd, "another-file", 0) != 0) in do_test()
116 if (fstatat64 (dir_fd, "some-file", &st2, 0) != 0) in do_test()
127 if (fstatat64 (dir_fd, "another-file", &st2, AT_SYMLINK_NOFOLLOW) != 0) in do_test()
145 if (fstatat64 (dir_fd, "another-file", &st2, 0) != 0) in do_test()
158 if (unlinkat (dir_fd, "another-file", 0) != 0) in do_test()
163 if (unlinkat (dir_fd, "some-file", 0) != 0) in do_test()
169 close (dir_fd); in do_test()