Searched refs:utimensat (Results 1 - 8 of 8) sorted by relevance
/illumos-gate/usr/src/lib/libc/port/sys/ |
H A D | utimesys.c | 42 utimensat(int fd, const char *path, const timespec_t times[2], int flag) function 67 return (utimensat(AT_FDCWD, path, tsp, 0)); 89 return (utimensat(AT_FDCWD, path, tsp, 0)); 116 return (utimensat(fd, path, tsp, 0));
|
/illumos-gate/usr/src/uts/common/syscall/ |
H A D | utime.c | 185 utimensat(int fd, char *fname, timespec_t *tsptr, int flag) function 206 return (utimensat((int)arg1, (char *)arg2,
|
/illumos-gate/usr/src/man/man2/ |
H A D | Makefile | 255 utimensat.2 \ 402 utimensat.2 := LINKSRC = utimes.2
|
/illumos-gate/usr/src/lib/libast/common/tm/ |
H A D | tvtouch.c | 142 if (!utimensat(AT_FDCWD, path, ts[0].tv_nsec == UTIME_NOW && ts[1].tv_nsec == UTIME_NOW ? (struct timespec*)0 : ts, (flags & TV_TOUCH_PHYSICAL) ? AT_SYMLINK_NOFOLLOW : 0)) 154 if ((ts[0].tv_nsec != UTIME_NOW || ts[1].tv_nsec != UTIME_NOW) && utimensat(AT_FDCWD, path, ts, (flags & TV_TOUCH_PHYSICAL) ? AT_SYMLINK_NOFOLLOW : 0))
|
/illumos-gate/usr/src/boot/sys/sys/ |
H A D | stat.h | 331 int utimensat(int fd, const char *path, const struct timespec times[2],
|
/illumos-gate/usr/src/cmd/touch/ |
H A D | touch.c | 242 (fd < 0 && utimensat(AT_FDCWD, argv[c], tsp, 0) != 0)) {
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | stat.h | 477 /* for use with futimens() and utimensat() */ 514 extern int utimensat(int, const char *, const struct timespec[2], int);
|
/illumos-gate/usr/src/cmd/mv/ |
H A D | mv.c | 1346 * don't report a utimensat() failure. 1347 * If this is the XPG4 version and utimensat fails, if 1) pflg is set (cp -p) 1350 * utimensat(2) is being used to achieve granularity in nanoseconds 1362 rc = utimensat(AT_FDCWD, to, times, 1688 * utimensat. 1692 if (utimensat(targetdirfd, ".", times, 0) < 0) { 1803 if (utimensat(targetdirfd, dp->d_name, times, 0) < 0) {
|
Completed in 107 milliseconds