Lines Matching refs:timeout
23 fd_set *exceptfds, const struct __timespec64 *timeout, in pselect64_syscall() argument
35 timeout, data); in pselect64_syscall()
40 const struct __timespec64 *timeout, const sigset_t *sigmask) in __pselect64() argument
45 if (timeout != NULL) in __pselect64()
47 tval = *timeout; in __pselect64()
48 timeout = &tval; in __pselect64()
56 return pselect64_syscall (nfds, readfds, writefds, exceptfds, timeout, in __pselect64()
59 bool need_time64 = timeout != NULL && !in_time_t_range (timeout->tv_sec); in __pselect64()
62 int r = pselect64_syscall (nfds, readfds, writefds, exceptfds, timeout, in __pselect64()
70 return __pselect32 (nfds, readfds, writefds, exceptfds, timeout, sigmask); in __pselect64()
79 const struct timespec *timeout, const sigset_t *sigmask) in libc_hidden_def()
82 if (timeout != NULL) in libc_hidden_def()
84 ts64 = valid_timespec_to_timespec64 (*timeout); in libc_hidden_def()