Lines Matching defs:tv50
55 utimes(const char *path, const struct timeval50 tv50[2])
59 if (tv50) {
60 timeval50_to_timeval(&tv50[0], &tv[0]);
61 timeval50_to_timeval(&tv50[1], &tv[1]);
63 return __utimes50(path, tv50 ? tv : NULL);
67 lutimes(const char *path, const struct timeval50 tv50[2])
71 if (tv50) {
72 timeval50_to_timeval(&tv50[0], &tv[0]);
73 timeval50_to_timeval(&tv50[1], &tv[1]);
75 return __lutimes50(path, tv50 ? tv : NULL);
79 futimes(int fd, const struct timeval50 tv50[2])
83 if (tv50) {
84 timeval50_to_timeval(&tv50[0], &tv[0]);
85 timeval50_to_timeval(&tv50[1], &tv[1]);
87 return __futimes50(fd, tv50 ? tv : NULL);