Lines Matching refs:timeout

112 	struct _umtx_time *tm_p, timeout;  in __thr_umutex_timedlock()  local
121 timeout._clockid = CLOCK_REALTIME; in __thr_umutex_timedlock()
122 timeout._flags = UMTX_ABSTIME; in __thr_umutex_timedlock()
123 timeout._timeout = *abstime; in __thr_umutex_timedlock()
124 tm_p = &timeout; in __thr_umutex_timedlock()
125 tm_size = sizeof(timeout); in __thr_umutex_timedlock()
182 _thr_umtx_wait(volatile long *mtx, long id, const struct timespec *timeout) in _thr_umtx_wait() argument
185 if (timeout && (timeout->tv_sec < 0 || (timeout->tv_sec == 0 && in _thr_umtx_wait()
186 timeout->tv_nsec <= 0))) in _thr_umtx_wait()
189 __DECONST(void*, timeout))); in _thr_umtx_wait()
194 const struct timespec *timeout, int shared) in _thr_umtx_wait_uint() argument
197 if (timeout && (timeout->tv_sec < 0 || (timeout->tv_sec == 0 && in _thr_umtx_wait_uint()
198 timeout->tv_nsec <= 0))) in _thr_umtx_wait_uint()
202 __DECONST(void*, timeout))); in _thr_umtx_wait_uint()
209 struct _umtx_time *tm_p, timeout; in _thr_umtx_timedwait_uint() local
216 timeout._clockid = clockid; in _thr_umtx_timedwait_uint()
217 timeout._flags = UMTX_ABSTIME; in _thr_umtx_timedwait_uint()
218 timeout._timeout = *abstime; in _thr_umtx_timedwait_uint()
219 tm_p = &timeout; in _thr_umtx_timedwait_uint()
220 tm_size = sizeof(timeout); in _thr_umtx_timedwait_uint()
245 const struct timespec *timeout, int flags) in _thr_ucond_wait() argument
249 if (timeout && (timeout->tv_sec < 0 || (timeout->tv_sec == 0 && in _thr_ucond_wait()
250 timeout->tv_nsec <= 0))) { in _thr_ucond_wait()
256 __DECONST(void*, timeout))); in _thr_ucond_wait()
281 struct _umtx_time timeout, *tm_p; in __thr_rwlock_rdlock() local
288 timeout._timeout = *tsp; in __thr_rwlock_rdlock()
289 timeout._flags = UMTX_ABSTIME; in __thr_rwlock_rdlock()
290 timeout._clockid = CLOCK_REALTIME; in __thr_rwlock_rdlock()
291 tm_p = &timeout; in __thr_rwlock_rdlock()
292 tm_size = sizeof(timeout); in __thr_rwlock_rdlock()
301 struct _umtx_time timeout, *tm_p; in __thr_rwlock_wrlock() local
308 timeout._timeout = *tsp; in __thr_rwlock_wrlock()
309 timeout._flags = UMTX_ABSTIME; in __thr_rwlock_wrlock()
310 timeout._clockid = CLOCK_REALTIME; in __thr_rwlock_wrlock()
311 tm_p = &timeout; in __thr_rwlock_wrlock()
312 tm_size = sizeof(timeout); in __thr_rwlock_wrlock()