Lines Matching defs:dfd
22 int raw_openat2(int dfd, const char *path, void *how, size_t size)
24 int ret = syscall(__NR_openat2, dfd, path, how, size);
28 int sys_openat2(int dfd, const char *path, struct open_how *how)
30 return raw_openat2(dfd, path, how, sizeof(*how));
33 int sys_openat(int dfd, const char *path, struct open_how *how)
35 int ret = openat(dfd, path, how->flags, how->mode);
47 int touchat(int dfd, const char *path)
49 int fd = openat(dfd, path, O_CREAT, 0700);
71 bool fdequal(int fd, int dfd, const char *path)
77 dfdpath = fdreadlink(dfd);