Home
last modified time | relevance | path

Searched defs:shared (Results 1 – 6 of 6) sorted by relevance

/bionic/libc/private/
Dbionic_futex.h57 static inline int __futex_wake_ex(volatile void* ftx, bool shared, int count) { in __futex_wake_ex()
65 static inline int __futex_wait_ex(volatile void* ftx, bool shared, int value) { in __futex_wait_ex()
73 static inline int __futex_pi_unlock(volatile void* ftx, bool shared) { in __futex_pi_unlock()
Dbionic_lock.h73 bool shared = process_shared; /* cache to local variable */ in unlock() local
/bionic/libc/bionic/
Dsemaphore.cpp145 unsigned int shared = old_value & SEMCOUNT_SHARED_MASK; in __sem_dec() local
165 unsigned int shared = old_value & SEMCOUNT_SHARED_MASK; in __sem_trydec() local
189 unsigned int shared = old_value & SEMCOUNT_SHARED_MASK; in __sem_inc() local
216 unsigned int shared = SEM_GET_SHARED(sem_count_ptr); in sem_wait() local
250 unsigned int shared = SEM_GET_SHARED(sem_count_ptr); in __sem_timedwait() local
291 unsigned int shared = SEM_GET_SHARED(sem_count_ptr); in sem_post() local
Dbionic_futex.cpp61 int __futex_wait_ex(volatile void* ftx, bool shared, int value, bool use_realtime_clock, in __futex_wait_ex()
67 int __futex_pi_lock_ex(volatile void* ftx, bool shared, bool use_realtime_clock, in __futex_pi_lock_ex()
Dpthread_mutex.cpp140 bool shared; member
556 uint16_t shared) { in NormalMutexTryLock()
581 uint16_t shared, in NormalMutexLock()
620 uint16_t shared) { in NormalMutexUnlock()
686 uint16_t shared, in RecursiveOrErrorcheckMutexWait()
715 uint16_t shared = (old_state & MUTEX_SHARED_MASK); in MutexLockWithTimeout() local
823 uint16_t shared = (old_state & MUTEX_SHARED_MASK); in pthread_mutex_lock() local
855 uint16_t shared = (old_state & MUTEX_SHARED_MASK); in pthread_mutex_unlock() local
908 uint16_t shared = (old_state & MUTEX_SHARED_MASK); in pthread_mutex_trylock() local
927 uint16_t shared = (old_state & MUTEX_SHARED_MASK); in pthread_mutex_trylock() local
[all …]
/bionic/tests/
Dthread_local_test.cpp55 TEST(thread_local_storage, shared) { in TEST() argument