Lines Matching refs:tsp64
29 const struct __timespec64 tsp64[2], int flags) in __utimensat64_helper()
36 return INLINE_SYSCALL_CALL (utimensat_time64, fd, file, &tsp64[0], flags); in __utimensat64_helper()
42 bool need_time64 = tsp64 != NULL in __utimensat64_helper()
43 && ((!TS_SPECIAL (tsp64[0]) in __utimensat64_helper()
44 && !in_time_t_range (tsp64[0].tv_sec)) in __utimensat64_helper()
45 || (!TS_SPECIAL (tsp64[1]) in __utimensat64_helper()
46 && !in_time_t_range (tsp64[1].tv_sec))); in __utimensat64_helper()
49 int r = INLINE_SYSCALL_CALL (utimensat_time64, fd, file, &tsp64[0], in __utimensat64_helper()
58 if (tsp64) in __utimensat64_helper()
60 tsp32[0] = valid_timespec64_to_timespec (tsp64[0]); in __utimensat64_helper()
61 tsp32[1] = valid_timespec64_to_timespec (tsp64[1]); in __utimensat64_helper()
75 __utimensat64 (int fd, const char *file, const struct __timespec64 tsp64[2], in libc_hidden_def()
81 return __utimensat64_helper (fd, file, &tsp64[0], flags); in libc_hidden_def()
91 struct __timespec64 tsp64[2]; in libc_hidden_def() local
94 tsp64[0] = valid_timespec_to_timespec64 (tsp[0]); in libc_hidden_def()
95 tsp64[1] = valid_timespec_to_timespec64 (tsp[1]); in libc_hidden_def()
98 return __utimensat64 (fd, file, tsp ? &tsp64[0] : NULL, flags); in libc_hidden_def()