Home
last modified time | relevance | path

Searched refs:ts64 (Results 1 – 19 of 19) sorted by relevance

/sysdeps/unix/sysv/linux/
A Dutime.c26 struct __timespec64 ts64[2]; in __utime64() local
30 ts64[0].tv_sec = times->actime; in __utime64()
31 ts64[0].tv_nsec = 0LL; in __utime64()
32 ts64[1].tv_sec = times->modtime; in __utime64()
33 ts64[1].tv_nsec = 0LL; in __utime64()
36 return __utimensat64_helper (AT_FDCWD, file, times ? ts64 : NULL, 0); in __utime64()
A Dfutimes.c28 struct __timespec64 ts64[2]; in __futimes64() local
31 ts64[0] = timeval64_to_timespec64 (tvp64[0]); in __futimes64()
32 ts64[1] = timeval64_to_timespec64 (tvp64[1]); in __futimes64()
35 return __utimensat64_helper (fd, NULL, tvp64 ? &ts64[0] : NULL, 0); in __futimes64()
A Dutimes.c25 struct __timespec64 ts64[2]; in __utimes64() local
29 ts64[0] = timeval64_to_timespec64 (tvp[0]); in __utimes64()
30 ts64[1] = timeval64_to_timespec64 (tvp[1]); in __utimes64()
33 return __utimensat64_helper (AT_FDCWD, file, tvp ? ts64 : NULL, 0); in __utimes64()
A Dlutimes.c27 struct __timespec64 ts64[2]; in __lutimes64() local
30 ts64[0] = timeval64_to_timespec64 (tvp64[0]); in __lutimes64()
31 ts64[1] = timeval64_to_timespec64 (tvp64[1]); in __lutimes64()
34 return __utimensat64_helper (AT_FDCWD, file, tvp64 ? &ts64[0] : NULL, in __lutimes64()
A Dfutimesat.c27 struct __timespec64 ts64[2]; in __futimesat64() local
30 ts64[0] = timeval64_to_timespec64 (tvp64[0]); in __futimesat64()
31 ts64[1] = timeval64_to_timespec64 (tvp64[1]); in __futimesat64()
34 return __utimensat64_helper (fd, file, tvp64 ? &ts64[0] : NULL, 0); in __futimesat64()
A Dgettimeofday.c68 struct __timespec64 ts64;
69 if (__clock_gettime64 (CLOCK_REALTIME, &ts64))
72 *tv = timespec64_to_timeval64 (ts64);
A Drecvmmsg.c76 struct __timespec64 ts64, *pts64 = NULL; in libc_hidden_def() local
79 ts64 = valid_timespec_to_timespec64 (*timeout); in libc_hidden_def()
80 pts64 = &ts64; in libc_hidden_def()
85 *timeout = valid_timespec64_to_timespec (ts64); in libc_hidden_def()
A Dclock_getres.c66 struct __timespec64 ts64; in libc_hidden_def() local
69 retval = __clock_getres64 (clock_id, &ts64); in libc_hidden_def()
71 *res = valid_timespec64_to_timespec (ts64); in libc_hidden_def()
A Dmtx_timedlock.c41 struct __timespec64 ts64 = valid_timespec_to_timespec64 (*time_point);
43 return __mtx_timedlock64 (mutex, &ts64);
A Dppoll.c73 struct __timespec64 ts64; in libc_hidden_def() local
75 ts64 = valid_timespec_to_timespec64 (*timeout); in libc_hidden_def()
77 return __ppoll64 (fds, nfds, timeout ? &ts64 : NULL, sigmask); in libc_hidden_def()
A Dsigtimedwait.c73 struct __timespec64 ts64, *pts64 = NULL; in libc_hidden_def() local
76 ts64 = valid_timespec_to_timespec64 (*timeout); in libc_hidden_def()
77 pts64 = &ts64; in libc_hidden_def()
A Dselect.c56 struct __timespec64 ts64, *pts64 = NULL; in __select64() local
59 ts64.tv_sec = s; in __select64()
60 ts64.tv_nsec = ns; in __select64()
61 pts64 = &ts64; in __select64()
82 TIMESPEC_TO_TIMEVAL (timeout, &ts64); in __select64()
A Dcnd_timedwait.c42 struct __timespec64 ts64 = valid_timespec_to_timespec64 (*time_point);
44 return __cnd_timedwait64(cond, mutex, &ts64);
A Dpselect.c81 struct __timespec64 ts64, *pts64 = NULL; in libc_hidden_def() local
84 ts64 = valid_timespec_to_timespec64 (*timeout); in libc_hidden_def()
85 pts64 = &ts64; in libc_hidden_def()
A Dsemtimedop.c76 struct __timespec64 ts64, *pts64 = NULL; in libc_hidden_def() local
79 ts64 = valid_timespec_to_timespec64 (*timeout); in libc_hidden_def()
80 pts64 = &ts64; in libc_hidden_def()
A Dmq_timedsend.c81 struct __timespec64 ts64; in ___mq_timedsend() local
83 ts64 = valid_timespec_to_timespec64 (*abs_timeout); in ___mq_timedsend()
86 abs_timeout != NULL ? &ts64 : NULL); in ___mq_timedsend()
A Dmq_timedreceive.c82 struct __timespec64 ts64; in ___mq_timedreceive() local
84 ts64 = valid_timespec_to_timespec64 (*abs_timeout); in ___mq_timedreceive()
87 abs_timeout != NULL ? &ts64 : NULL); in ___mq_timedreceive()
A Dclock_settime.c63 struct __timespec64 ts64 = valid_timespec_to_timespec64 (*tp); in libc_hidden_def() local
65 return __clock_settime64 (clock_id, &ts64); in libc_hidden_def()
/sysdeps/mach/
A Dclock_gettime.c115 __clock_gettime64 (clockid_t clock_id, struct __timespec64 *ts64) in __clock_gettime64() argument
122 *ts64 = valid_timespec_to_timespec64 (ts); in __clock_gettime64()

Completed in 39 milliseconds