Searched defs:TryLock (Results 1 - 7 of 7) sorted by relevance

/external/v8/src/base/platform/
H A Dmutex.cc139 bool Mutex::TryLock() { function in class:v8::base::Mutex
180 bool RecursiveMutex::TryLock() { function in class:v8::base::RecursiveMutex
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mutex.h30 if (TryLock())
35 bool TryLock() { function in class:__sanitizer::StaticSpinMutex
/external/regex-re2/util/
H A Dmutex.h39 // lines, and change TryLock() to assert(0) or something.
60 inline bool TryLock(); // If free, Lock() and return true, else return false
99 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; } function in class:re2::Mutex
112 bool Mutex::TryLock() { return pthread_rwlock_trywrlock(&mutex_) == 0; } function in class:re2::Mutex
127 bool Mutex::TryLock() { return pthread_mutex_trylock(&mutex_) == 0; } function in class:re2::Mutex
138 bool Mutex::TryLock() { return TryEnterCriticalSection(&mutex_) != 0; } function in class:re2::Mutex
/external/toolchain-utils/
H A Dfile_lock_machine.py282 def TryLock(self, timeout=300, exclusive=False, reason=''): member in class:Machine
/external/valgrind/drd/tests/
H A Dtsan_thread_wrappers_pthread.h203 bool TryLock() { return (0 == pthread_mutex_trylock(&mu_));} function in class:Mutex
211 bool ReaderTryLock() { return TryLock();}
/external/webrtc/webrtc/base/
H A Dstream.cc494 bool FileStream::TryLock() { function in class:rtc::FileStream
/external/v8/src/
H A Disolate.h1621 static bool TryLock(Isolate* isolate) { function in class:v8::internal::BASE_EMBEDDED
1622 return isolate->break_access()->TryLock();

Completed in 7058 milliseconds