Lines Matching refs:times
35 utimensat(int fd, const char *path, const timespec_t times[2], int flag)
37 return (syscall(SYS_utimensat, fd, path, times, flag));
41 futimens(int fd, const timespec_t times[2])
43 return (utimensat(fd, NULL, times, 0));
48 utime(const char *path, const struct utimbuf *times)
54 if (times == NULL) {
58 if (uucopy(times, <imes, sizeof (ltimes)) != 0)
70 utimes(const char *path, const struct timeval times[2])
76 if (times == NULL) {
80 if (uucopy(times, ltimes, sizeof (ltimes)) != 0)
93 futimesat(int fd, const char *path, const struct timeval times[2])
99 if (times == NULL) {
103 if (uucopy(times, ltimes, sizeof (ltimes)) != 0)