Searched refs:abs_timeout_or_null (Results 1 – 3 of 3) sorted by relevance
/bionic/libc/bionic/ |
D | pthread_rwlock.cpp | 290 const timespec* abs_timeout_or_null) { in __pthread_rwlock_timedrdlock() argument 310 if (abs_timeout_or_null != NULL) { in __pthread_rwlock_timedrdlock() 312 if (!timespec_from_absolute_timespec(*rel_timeout, *abs_timeout_or_null, CLOCK_REALTIME)) { in __pthread_rwlock_timedrdlock() 369 const timespec* abs_timeout_or_null) { in __pthread_rwlock_timedwrlock() argument 388 if (abs_timeout_or_null != NULL) { in __pthread_rwlock_timedwrlock() 390 if (!timespec_from_absolute_timespec(*rel_timeout, *abs_timeout_or_null, CLOCK_REALTIME)) { in __pthread_rwlock_timedwrlock()
|
D | pthread_cond.cpp | 188 const timespec* abs_timeout_or_null, clockid_t clock) { in __pthread_cond_timedwait() argument 192 if (abs_timeout_or_null != NULL) { in __pthread_cond_timedwait() 194 if (!timespec_from_absolute_timespec(*rel_timeout, *abs_timeout_or_null, clock)) { in __pthread_cond_timedwait()
|
D | pthread_mutex.cpp | 299 const timespec* abs_timeout_or_null, in __pthread_normal_mutex_lock() argument 322 if (abs_timeout_or_null != NULL) { in __pthread_normal_mutex_lock() 324 if (!timespec_from_absolute_timespec(*rel_timeout, *abs_timeout_or_null, clock)) { in __pthread_normal_mutex_lock() 420 const timespec* abs_timeout_or_null, clockid_t clock) { in __pthread_mutex_lock_with_timeout() argument 427 return __pthread_normal_mutex_lock(mutex, shared, abs_timeout_or_null, clock); in __pthread_mutex_lock_with_timeout() 490 if (abs_timeout_or_null != NULL) { in __pthread_mutex_lock_with_timeout() 492 if (!timespec_from_absolute_timespec(*rel_timeout, *abs_timeout_or_null, clock)) { in __pthread_mutex_lock_with_timeout()
|