Lines Matching refs:tv
37 static int futimesat(int fd, const char* path, const timeval tv[2], int flags) { in futimesat()
39 if (tv && (!timespec_from_timeval(ts[0], tv[0]) || !timespec_from_timeval(ts[1], tv[1]))) { in futimesat()
43 return utimensat(fd, path, tv ? ts : nullptr, flags); in futimesat()
46 int utimes(const char* path, const timeval tv[2]) { in utimes()
47 return futimesat(AT_FDCWD, path, tv, 0); in utimes()
50 int lutimes(const char* path, const timeval tv[2]) { in lutimes()
51 return futimesat(AT_FDCWD, path, tv, AT_SYMLINK_NOFOLLOW); in lutimes()
54 int futimesat(int fd, const char* path, const timeval tv[2]) { in futimesat()
55 return futimesat(fd, path, tv, 0); in futimesat()
58 int futimes(int fd, const timeval tv[2]) { in futimes()
60 if (tv && (!timespec_from_timeval(ts[0], tv[0]) || !timespec_from_timeval(ts[1], tv[1]))) { in futimes()
64 return futimens(fd, tv ? ts : nullptr); in futimes()