Home | History | Annotate | Download | only in utimensat

Lines Matching defs:dirfd

71 utimensat_sc(int dirfd, const char *pathname,
74 return ltp_syscall(__NR_utimensat, dirfd, pathname, times, flags);
110 int flags, dirfd, opt, oflag;
121 dirfd = AT_FDCWD;
154 dirfd = open(dirfdPath, oflag);
155 if (dirfd == -1)
159 printf("Opened dirfd %d", oflag);
224 printf("dirfd is %d\n", dirfd);
238 if (utimensat_sc(dirfd, pathname, tsp, flags) == -1) {