Home
last modified time | relevance | path

Searched refs:__futex_wait_ex (Results 1 – 10 of 10) sorted by relevance

/bionic/libc/bionic/
Dpthread_barrier.cpp121 __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()
Dpthread_once.cpp82 __futex_wait_ex(once_control_ptr, 0, old_value, false, nullptr); in pthread_once()
Dsemaphore.cpp223 … 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.cpp105 __futex_wait_ex(&gv->state, false, CONSTRUCTION_UNDERWAY_WITH_WAITER); in __cxa_guard_acquire()
Dbionic_futex.cpp71 int __futex_wait_ex(volatile void* ftx, bool shared, int value, bool use_realtime_clock, in __futex_wait_ex() function
Dpthread_rwlock.cpp326 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()
Dpthread_mutex.cpp607 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()
Dpthread_cond.cpp198 int status = __futex_wait_ex(&cond->state, cond->process_shared(), old_state, in __pthread_cond_timedwait()
/bionic/libc/private/
Dbionic_futex.h65 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,
Dbionic_lock.h67 __futex_wait_ex(&state, process_shared, LockedWithWaiter); in lock()