HomeSort by relevance Sort by last modified time
    Searched defs:TryLock (Results 1 - 11 of 11) sorted by null

  /device/google/contexthub/firmware/os/inc/
trylock.h 24 #include <plat/trylock.h>
27 struct TryLock {
31 #define TRYLOCK_DECL_STATIC(name) struct TryLock name
34 void trylockInit(struct TryLock *lock);
35 void trylockRelease(struct TryLock *lock);
36 bool trylockTryTake(struct TryLock *lock); //true if we took it
  /external/v8/src/base/platform/
mutex.cc 139 bool Mutex::TryLock() {
180 bool RecursiveMutex::TryLock() {
  /device/google/cuttlefish_common/common/vsoc/lib/
lock_common.cpp 58 bool vsoc::layout::WaitingLockBase::TryLock(uint32_t tid,
146 if (TryLock(tid, &expected)) {
  /external/toolchain-utils/
file_lock_machine.py 284 def TryLock(self, timeout=300, exclusive=False, reason=''):
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mutex.h 30 if (TryLock())
35 bool TryLock() {
  /external/gflags/src/
mutex.h 42 // NOTE: by default, we have #ifdef'ed out the TryLock() method.
44 // 1) TryLock() under Windows is a bit annoying (it requires a
46 // 2) TryLock() is broken for NO_THREADS mode, at least in NDEBUG
48 // If you need TryLock(), and either these two caveats are not a
123 // lines, and change TryLock() to assert(0) or something.
177 inline bool TryLock(); // If free, Lock() and return true, else return false
225 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; }
244 bool Mutex::TryLock() { return is_safe_ ?
268 bool Mutex::TryLock() { return is_safe_ ?
293 bool Mutex::TryLock() { return is_safe_
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msputils.h 103 WINBOOL TryLock() { return TryEnterCriticalSection(&m_CritSec); }
  /external/webrtc/webrtc/base/
stream.cc 494 bool FileStream::TryLock() {
  /art/runtime/
monitor.cc 390 bool Monitor::TryLock(Thread* self) {
    [all...]
  /external/valgrind/drd/tests/
tsan_thread_wrappers_pthread.h 203 bool TryLock() { return (0 == pthread_mutex_trylock(&mu_));}
211 bool ReaderTryLock() { return TryLock();}
  /external/v8/src/
isolate.h     [all...]

Completed in 570 milliseconds