Home
last modified time | relevance | path

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

/external/libcxx/src/
Dmutex.cpp38 mutex::try_lock() _NOEXCEPT in try_lock() function in mutex
106 recursive_mutex::try_lock() _NOEXCEPT in try_lock() function in recursive_mutex
133 timed_mutex::try_lock() _NOEXCEPT in try_lock() function in timed_mutex
184 recursive_timed_mutex::try_lock() _NOEXCEPT in try_lock() function in recursive_timed_mutex
Dshared_mutex.cpp38 __shared_mutex_base::try_lock() in try_lock() function in __shared_mutex_base
109 bool shared_timed_mutex::try_lock() { return __base.try_lock(); } in try_lock() function in shared_timed_mutex
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
Dtry_lock.pass.cpp25 bool try_lock() in try_lock() function
/external/llvm/include/llvm/Support/
DMutex.h126 bool try_lock() { in try_lock() function
/external/libcxx/test/std/thread/thread.mutex/thread.lock.algorithm/
Dlock.pass.cpp32 bool try_lock() in try_lock() function in L0
55 bool try_lock() in try_lock() function in L1
78 bool try_lock() in try_lock() function in L2
Dtry_lock.pass.cpp27 bool try_lock() in try_lock() function in L0
45 bool try_lock() in try_lock() function in L1
63 bool try_lock() in try_lock() function in L2
/external/compiler-rt/test/tsan/
Ddeadlock_detector_stress_test.cc43 bool try_lock() { return 0 == pthread_mutex_trylock(&mu_); } in try_lock() function in PthreadMutex
71 bool try_lock() { return 0 == pthread_spin_trylock(&mu_); } in try_lock() function in PthreadSpinLock
95 bool try_lock() { return 0 == pthread_rwlock_trywrlock(&mu_); } in try_lock() function in PthreadRWLock
/external/compiler-rt/lib/tsan/rtl/
Dtsan_rtl_mutex.cc143 void MutexLock(ThreadState *thr, uptr pc, uptr addr, int rec, bool try_lock) { in MutexLock()