Home
last modified time | relevance | path

Searched defs:try_lock (Results 1 – 7 of 7) sorted by relevance

/external/libcxx/src/
Dmutex.cpp36 mutex::try_lock() _NOEXCEPT in try_lock() function in mutex
104 recursive_mutex::try_lock() _NOEXCEPT in try_lock() function in recursive_mutex
131 timed_mutex::try_lock() _NOEXCEPT in try_lock() function in timed_mutex
182 recursive_timed_mutex::try_lock() _NOEXCEPT in try_lock() function in recursive_timed_mutex
Dshared_mutex.cpp34 shared_timed_mutex::try_lock() in try_lock() function in shared_timed_mutex
/external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
Dtry_lock.pass.cpp23 bool try_lock() in try_lock() function
/external/libcxx/test/thread/thread.mutex/thread.lock.algorithm/
Dlock.pass.cpp30 bool try_lock() in try_lock() function in L0
53 bool try_lock() in try_lock() function in L1
76 bool try_lock() in try_lock() function in L2
Dtry_lock.pass.cpp25 bool try_lock() in try_lock() function in L0
43 bool try_lock() in try_lock() function in L1
61 bool try_lock() in try_lock() function in L2
/external/compiler-rt/test/tsan/
Ddeadlock_detector_stress_test.cc46 bool try_lock() { return 0 == pthread_mutex_trylock(&mu_); } in try_lock() function in PthreadMutex
73 bool try_lock() { return 0 == pthread_spin_trylock(&mu_); } in try_lock() function in PthreadSpinLock
94 bool try_lock() { return 0 == pthread_rwlock_trywrlock(&mu_); } in try_lock() function in PthreadRWLock
/external/compiler-rt/lib/tsan/rtl/
Dtsan_rtl_mutex.cc147 void MutexLock(ThreadState *thr, uptr pc, uptr addr, int rec, bool try_lock) { in MutexLock()