Searched refs:tz (Results 1 – 5 of 5) sorted by relevance
/sysdeps/unix/sysv/linux/ |
A D | gettimeofday.c | 34 if (__glibc_unlikely (tz != 0)) in __gettimeofday_syscall() 35 memset (tz, 0, sizeof *tz); in __gettimeofday_syscall() 36 return INLINE_SYSCALL_CALL (gettimeofday, tv, tz); in __gettimeofday_syscall() 48 __gettimeofday (struct timeval *restrict tv, void *restrict tz) 50 if (__glibc_unlikely (tz != 0)) 51 memset (tz, 0, sizeof *tz); 53 return INLINE_VSYSCALL (gettimeofday, 2, tv, tz); 65 if (__glibc_unlikely (tz != 0)) 66 memset (tz, 0, sizeof (struct timezone)); 80 __gettimeofday (struct timeval *restrict tv, void *restrict tz) [all …]
|
A D | settimeofday.c | 26 __settimeofday64 (const struct __timeval64 *tv, const struct timezone *tz) in __settimeofday64() argument 29 if (__glibc_unlikely (tz != 0)) in __settimeofday64() 36 return __settimezone (tz); in __settimeofday64() 47 __settimeofday (const struct timeval *tv, const struct timezone *tz) in libc_hidden_def() 50 return __settimeofday64 (NULL, tz); in libc_hidden_def() 54 return __settimeofday64 (&tv64, tz); in libc_hidden_def()
|
A D | settimezone.c | 29 __settimezone (const struct timezone *tz) in __settimezone() argument 32 return INLINE_SYSCALL_CALL (settimeofday, NULL, tz); in __settimezone()
|
/sysdeps/unix/sysv/linux/alpha/ |
A D | osf_settimeofday.c | 33 const struct timezone *tz) in __settimeofday_tv32() argument 35 if (__glibc_unlikely (tz != 0)) in __settimeofday_tv32() 42 return __settimezone (tz); in __settimeofday_tv32()
|
A D | osf_gettimeofday.c | 33 __gettimeofday_tv32 (struct __timeval32 *restrict tv32, void *restrict tz) in __gettimeofday_tv32() argument 35 if (__glibc_unlikely (tz != 0)) in __gettimeofday_tv32() 36 memset (tz, 0, sizeof (struct timezone)); in __gettimeofday_tv32()
|
Completed in 6 milliseconds