Lines Matching defs:dfd
91 int dfd;
100 RL(dfd = open(DIR, O_RDONLY, 0));
101 RL(utimensat(dfd, BASEFILE, tptr, 0));
102 RL(close(dfd));
153 int dfd;
156 RL(dfd = open(DIR, O_RDONLY, 0));
157 ATF_CHECK_ERRNO(ENOENT, utimensat(dfd, FILEERR, tptr, 0) == -1);
158 RL(close(dfd));
169 int dfd;
177 RL(dfd = open(getcwd(cwd, MAXPATHLEN), O_RDONLY, 0));
178 ATF_CHECK_ERRNO(ENOENT, utimensat(dfd, BASEFILE, tptr, 0) == -1);
179 RL(close(dfd));
206 int dfd;
213 RL(dfd = open(DIR, O_RDONLY, 0));
215 ATF_CHECK_ERRNO(ENOENT, utimensat(dfd, BASELINK, tptr, 0) == -1);
217 RL(utimensat(dfd, BASELINK, tptr, AT_SYMLINK_NOFOLLOW));
219 RL(close(dfd));