Lines Matching refs:abstime
169 rwlock_rdlock_common(pthread_rwlock_t *rwlock, const struct timespec *abstime) in rwlock_rdlock_common() argument
208 if (__predict_false(abstime && in rwlock_rdlock_common()
209 (abstime->tv_nsec >= 1000000000 || abstime->tv_nsec < 0))) in rwlock_rdlock_common()
214 ret = __thr_rwlock_rdlock(&prwlock->lock, flags, abstime); in rwlock_rdlock_common()
238 const struct timespec * __restrict abstime) in _pthread_rwlock_timedrdlock() argument
241 return (rwlock_rdlock_common(rwlock, abstime)); in _pthread_rwlock_timedrdlock()
302 rwlock_wrlock_common(pthread_rwlock_t *rwlock, const struct timespec *abstime) in rwlock_wrlock_common() argument
322 if (__predict_false(abstime && in rwlock_wrlock_common()
323 (abstime->tv_nsec >= 1000000000 || abstime->tv_nsec < 0))) in rwlock_wrlock_common()
328 ret = __thr_rwlock_wrlock(&prwlock->lock, abstime); in rwlock_wrlock_common()
356 const struct timespec * __restrict abstime) in _pthread_rwlock_timedwrlock() argument
359 return (rwlock_wrlock_common(rwlock, abstime)); in _pthread_rwlock_timedwrlock()