Lines Matching refs:abs_timeout

179                                                        const timespec* abs_timeout) {  in PIMutexTimedLock()  argument
186 ret = -__futex_pi_lock_ex(&mutex.owner_tid, mutex.shared, use_realtime_clock, abs_timeout); in PIMutexTimedLock()
689 const timespec* abs_timeout) { in RecursiveOrErrorcheckMutexWait() argument
696 return __futex_wait_ex(&mutex->state, shared, old_state, use_realtime_clock, abs_timeout); in RecursiveOrErrorcheckMutexWait()
706 use_realtime_clock, abs_timeout); in RecursiveOrErrorcheckMutexWait()
951 timespec abs_timeout; in pthread_mutex_lock_timeout_np() local
952 absolute_timespec_from_timespec(abs_timeout, ts, CLOCK_MONOTONIC); in pthread_mutex_lock_timeout_np()
954 &abs_timeout); in pthread_mutex_lock_timeout_np()
963 const timespec* abs_timeout, const char* function) { in __pthread_mutex_timedlock() argument
975 return PIMutexTimedLock(mutex->ToPIMutex(), use_realtime_clock, abs_timeout); in __pthread_mutex_timedlock()
980 return NonPI::MutexLockWithTimeout(mutex, use_realtime_clock, abs_timeout); in __pthread_mutex_timedlock()
983 int pthread_mutex_timedlock(pthread_mutex_t* mutex_interface, const struct timespec* abs_timeout) { in pthread_mutex_timedlock() argument
984 return __pthread_mutex_timedlock(mutex_interface, true, abs_timeout, __FUNCTION__); in pthread_mutex_timedlock()
988 const struct timespec* abs_timeout) { in pthread_mutex_timedlock_monotonic_np() argument
989 return __pthread_mutex_timedlock(mutex_interface, false, abs_timeout, __FUNCTION__); in pthread_mutex_timedlock_monotonic_np()
993 const struct timespec* abs_timeout) { in pthread_mutex_clocklock() argument
996 return __pthread_mutex_timedlock(mutex_interface, false, abs_timeout, __FUNCTION__); in pthread_mutex_clocklock()
998 return __pthread_mutex_timedlock(mutex_interface, true, abs_timeout, __FUNCTION__); in pthread_mutex_clocklock()