HomeSort by relevance Sort by last modified time
    Searched refs:__futex_wait_ex (Results 1 - 10 of 10) sorted by null

  /bionic/libc/bionic/
pthread_once.cpp 82 __futex_wait_ex(once_control_ptr, 0, old_value, false, nullptr);
pthread_barrier.cpp 121 __futex_wait_ex(&barrier->state, barrier->pshared, RELEASE, false, nullptr);
155 __futex_wait_ex(&barrier->state, barrier->pshared, WAIT, false, nullptr);
176 __futex_wait_ex(&barrier->state, barrier->pshared, RELEASE, false, nullptr);
bionic_futex.cpp 61 int __futex_wait_ex(volatile void* ftx, bool shared, int value, bool use_realtime_clock, function
__cxa_guard.cpp 107 __futex_wait_ex(&gv->state, false, CONSTRUCTION_UNDERWAY_WITH_WAITER);
semaphore.cpp 224 int result = __futex_wait_ex(sem_count_ptr, shared, shared | SEMCOUNT_MINUS_ONE, false, nullptr);
260 int result = __futex_wait_ex(sem_count_ptr, shared, shared | SEMCOUNT_MINUS_ONE,
pthread_cond.cpp 182 int status = __futex_wait_ex(&cond->state, cond->process_shared(), old_state,
pthread_rwlock.cpp 325 futex_result = __futex_wait_ex(&rwlock->pending_reader_wakeup_serial, rwlock->pshared,
392 futex_result = __futex_wait_ex(&rwlock->pending_writer_wakeup_serial, rwlock->pshared,
pthread_mutex.cpp 606 if (__futex_wait_ex(&mutex->state, shared, locked_contended, use_realtime_clock,
686 return __futex_wait_ex(&mutex->state, shared, old_state, use_realtime_clock, abs_timeout);
695 return __futex_wait_ex(&mutex->state, shared, (owner_tid << 16) | old_state,
    [all...]
  /bionic/libc/private/
bionic_futex.h 65 static inline int __futex_wait_ex(volatile void* ftx, bool shared, int value) { function
70 __LIBC_HIDDEN__ int __futex_wait_ex(volatile void* ftx, bool shared, int value,
bionic_lock.h 67 __futex_wait_ex(&state, process_shared, LockedWithWaiter);

Completed in 235 milliseconds