Searched refs:__futex_wait_ex (Results 1 – 10 of 10) sorted by relevance
/bionic/libc/bionic/ |
D | pthread_barrier.cpp | 121 __futex_wait_ex(&barrier->state, barrier->pshared, RELEASE, false, nullptr); in pthread_barrier_wait() 155 __futex_wait_ex(&barrier->state, barrier->pshared, WAIT, false, nullptr); in pthread_barrier_wait() 176 __futex_wait_ex(&barrier->state, barrier->pshared, RELEASE, false, nullptr); in pthread_barrier_destroy()
|
D | pthread_once.cpp | 82 __futex_wait_ex(once_control_ptr, 0, old_value, false, nullptr); in pthread_once()
|
D | semaphore.cpp | 223 … int result = __futex_wait_ex(sem_count_ptr, shared, shared | SEMCOUNT_MINUS_ONE, false, nullptr); in sem_wait() 259 int result = __futex_wait_ex(sem_count_ptr, shared, shared | SEMCOUNT_MINUS_ONE, in __sem_timedwait()
|
D | __cxa_guard.cpp | 105 __futex_wait_ex(&gv->state, false, CONSTRUCTION_UNDERWAY_WITH_WAITER); in __cxa_guard_acquire()
|
D | bionic_futex.cpp | 71 int __futex_wait_ex(volatile void* ftx, bool shared, int value, bool use_realtime_clock, in __futex_wait_ex() function
|
D | pthread_rwlock.cpp | 326 futex_result = __futex_wait_ex(&rwlock->pending_reader_wakeup_serial, rwlock->pshared, in __pthread_rwlock_timedrdlock() 393 futex_result = __futex_wait_ex(&rwlock->pending_writer_wakeup_serial, rwlock->pshared, in __pthread_rwlock_timedwrlock()
|
D | pthread_mutex.cpp | 607 if (__futex_wait_ex(&mutex->state, shared, locked_contended, use_realtime_clock, in NormalMutexLock() 696 return __futex_wait_ex(&mutex->state, shared, old_state, use_realtime_clock, abs_timeout); in RecursiveOrErrorcheckMutexWait() 705 return __futex_wait_ex(&mutex->state, shared, (owner_tid << 16) | old_state, in RecursiveOrErrorcheckMutexWait()
|
D | pthread_cond.cpp | 198 int status = __futex_wait_ex(&cond->state, cond->process_shared(), old_state, in __pthread_cond_timedwait()
|
/bionic/libc/private/ |
D | bionic_futex.h | 65 static inline int __futex_wait_ex(volatile void* ftx, bool shared, int value) { in __futex_wait_ex() function 70 __LIBC_HIDDEN__ int __futex_wait_ex(volatile void* ftx, bool shared, int value,
|
D | bionic_lock.h | 67 __futex_wait_ex(&state, process_shared, LockedWithWaiter); in lock()
|