/sysdeps/unix/sysv/linux/ |
A D | utime.c | 26 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 D | futimes.c | 28 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 D | utimes.c | 25 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 D | lutimes.c | 27 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 D | futimesat.c | 27 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 D | gettimeofday.c | 68 struct __timespec64 ts64; 69 if (__clock_gettime64 (CLOCK_REALTIME, &ts64)) 72 *tv = timespec64_to_timeval64 (ts64);
|
A D | recvmmsg.c | 76 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 D | clock_getres.c | 66 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 D | mtx_timedlock.c | 41 struct __timespec64 ts64 = valid_timespec_to_timespec64 (*time_point); 43 return __mtx_timedlock64 (mutex, &ts64);
|
A D | ppoll.c | 73 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 D | sigtimedwait.c | 73 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 D | select.c | 56 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 D | cnd_timedwait.c | 42 struct __timespec64 ts64 = valid_timespec_to_timespec64 (*time_point); 44 return __cnd_timedwait64(cond, mutex, &ts64);
|
A D | pselect.c | 81 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 D | semtimedop.c | 76 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 D | mq_timedsend.c | 81 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 D | mq_timedreceive.c | 82 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 D | clock_settime.c | 63 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 D | clock_gettime.c | 115 __clock_gettime64 (clockid_t clock_id, struct __timespec64 *ts64) in __clock_gettime64() argument 122 *ts64 = valid_timespec_to_timespec64 (ts); in __clock_gettime64()
|