Lines Matching refs:timeout
25 __ppoll64 (struct pollfd *fds, nfds_t nfds, const struct __timespec64 *timeout, in __ppoll64() argument
31 if (timeout != NULL) in __ppoll64()
33 tval = *timeout; in __ppoll64()
34 timeout = &tval; in __ppoll64()
42 return SYSCALL_CANCEL (ppoll_time64, fds, nfds, timeout, sigmask, in __ppoll64()
46 bool need_time64 = timeout != NULL && !in_time_t_range (timeout->tv_sec); in __ppoll64()
49 ret = SYSCALL_CANCEL (ppoll_time64, fds, nfds, timeout, sigmask, in __ppoll64()
58 if (timeout != NULL) in __ppoll64()
59 ts32 = valid_timespec64_to_timespec (*timeout); in __ppoll64()
61 return SYSCALL_CANCEL (ppoll, fds, nfds, timeout ? &ts32 : NULL, sigmask, in __ppoll64()
70 __ppoll (struct pollfd *fds, nfds_t nfds, const struct timespec *timeout, in libc_hidden_def()
74 if (timeout) in libc_hidden_def()
75 ts64 = valid_timespec_to_timespec64 (*timeout); in libc_hidden_def()
77 return __ppoll64 (fds, nfds, timeout ? &ts64 : NULL, sigmask); in libc_hidden_def()