Home
last modified time | relevance | path

Searched refs:times32 (Results 1 - 7 of 7) sorted by relevance

/third_party/musl/compat/time32/
H A Dfutimens_time32.c5 int __futimens_time32(int fd, const struct timespec32 *times32) in __futimens_time32() argument
7 return futimens(fd, !times32 ? 0 : ((struct timespec[2]){ in __futimens_time32()
8 {.tv_sec = times32[0].tv_sec,.tv_nsec = times32[0].tv_nsec}, in __futimens_time32()
9 {.tv_sec = times32[1].tv_sec,.tv_nsec = times32[1].tv_nsec}})); in __futimens_time32()
H A Dutimes_time32.c6 int __utimes_time32(const char *path, const struct timeval32 times32[2]) in __utimes_time32() argument
8 return utimes(path, !times32 ? 0 : ((struct timeval[2]){ in __utimes_time32()
9 {.tv_sec = times32[0].tv_sec,.tv_usec = times32[0].tv_usec}, in __utimes_time32()
10 {.tv_sec = times32[1].tv_sec,.tv_usec = times32[1].tv_usec}})); in __utimes_time32()
H A Dfutimesat_time32.c7 int __futimesat_time32(int dirfd, const char *pathname, const struct timeval32 times32[2]) in __futimesat_time32() argument
9 return futimesat(dirfd, pathname, !times32 ? 0 : ((struct timeval[2]){ in __futimesat_time32()
10 {.tv_sec = times32[0].tv_sec,.tv_usec = times32[0].tv_usec}, in __futimesat_time32()
11 {.tv_sec = times32[1].tv_sec,.tv_usec = times32[1].tv_usec}})); in __futimesat_time32()
H A Dfutimes_time32.c7 int __futimes_time32(int fd, const struct timeval32 times32[2]) in __futimes_time32() argument
9 return futimes(fd, !times32 ? 0 : ((struct timeval[2]){ in __futimes_time32()
10 {.tv_sec = times32[0].tv_sec,.tv_usec = times32[0].tv_usec}, in __futimes_time32()
11 {.tv_sec = times32[1].tv_sec,.tv_usec = times32[1].tv_usec}})); in __futimes_time32()
H A Dutimensat_time32.c5 int __utimensat_time32(int fd, const char *path, const struct timespec32 times32[2], int flags) in __utimensat_time32() argument
7 return utimensat(fd, path, !times32 ? 0 : ((struct timespec[2]){ in __utimensat_time32()
8 {.tv_sec = times32[0].tv_sec,.tv_nsec = times32[0].tv_nsec}, in __utimensat_time32()
9 {.tv_sec = times32[1].tv_sec,.tv_nsec = times32[1].tv_nsec}}), in __utimensat_time32()
H A Dlutimes_time32.c7 int __lutimes_time32(const char *path, const struct timeval32 times32[2]) in __lutimes_time32() argument
9 return lutimes(path, !times32 ? 0 : ((struct timeval[2]){ in __lutimes_time32()
10 {.tv_sec = times32[0].tv_sec,.tv_usec = times32[0].tv_usec}, in __lutimes_time32()
11 {.tv_sec = times32[1].tv_sec,.tv_usec = times32[1].tv_usec}})); in __lutimes_time32()
H A Dutime_time32.c10 int __utime_time32(const char *path, const struct utimbuf32 *times32) in __utime_time32() argument
12 return utime(path, !times32 ? 0 : (&(struct utimbuf){ in __utime_time32()
13 .actime = times32->actime, .modtime = times32->modtime})); in __utime_time32()

Completed in 1 milliseconds