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

1 2

  /external/chromium/chrome/common/
multi_process_lock_mac.cc 21 virtual bool TryLock() {
multi_process_lock_win.cc 21 virtual bool TryLock() {
multi_process_lock_linux.cc 26 virtual bool TryLock() {
  /external/chromium_org/chrome/common/
multi_process_lock_win.cc 21 virtual bool TryLock() {
  /external/chromium_org/third_party/libjingle/source/talk/base/
filelock.cc 59 FileLock* FileLock::TryLock(const std::string& path) {
66 ok = stream->Open(path, "a", NULL) && stream->TryLock();
stream.cc 500 bool FileStream::TryLock() {
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mutex.h 30 if (TryLock())
35 bool TryLock() {
  /external/ceres-solver/internal/ceres/
mutex.h 41 // NOTE: by default, we have #ifdef'ed out the TryLock() method.
43 // 1) TryLock() under Windows is a bit annoying (it requires a
45 // 2) TryLock() is broken for NO_THREADS mode, at least in NDEBUG
47 // If you need TryLock(), and either these two caveats are not a
105 // lines, and change TryLock() to assert(0) or something.
157 inline bool TryLock(); // If free, Lock() and return true, else return false
205 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; }
217 bool Mutex::TryLock() { return is_safe_ ?
237 bool Mutex::TryLock() { return is_safe_ ?
259 bool Mutex::TryLock() { return is_safe_
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
mutex.h 45 // NOTE: by default, we have #ifdef'ed out the TryLock() method.
47 // 1) TryLock() under Windows is a bit annoying (it requires a
49 // 2) TryLock() is broken for NO_THREADS mode, at least in NDEBUG
51 // If you need TryLock(), and either these two caveats are not a
111 // lines, and change TryLock() to assert(0) or something.
149 inline bool TryLock(); // If free, Lock() and return true, else return false
195 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; }
207 bool Mutex::TryLock() { return is_safe_ ?
228 bool Mutex::TryLock() { return is_safe_ ?
251 bool Mutex::TryLock() { return is_safe_
    [all...]
  /external/chromium_org/third_party/re2/util/
mutex.h 43 // lines, and change TryLock() to assert(0) or something.
64 inline bool TryLock(); // If free, Lock() and return true, else return false
103 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; }
116 bool Mutex::TryLock() { return pthread_rwlock_trywrlock(&mutex_) == 0; }
131 bool Mutex::TryLock() { return pthread_mutex_trylock(&mutex_) == 0; }
142 bool Mutex::TryLock() { return TryEnterCriticalSection(&mutex_) != 0; }
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
simple_mutex.h 48 // NOTE: TryLock() is broken for NO_THREADS mode, at least in NDEBUG
117 // lines, and change TryLock() to assert(0) or something.
166 inline bool TryLock(); // If free, Lock() and return true, else return false
212 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; }
229 bool Mutex::TryLock() { return is_safe_ ?
251 bool Mutex::TryLock() { return is_safe_ ?
274 bool Mutex::TryLock() { return is_safe_ ?
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
simple_mutex.h 48 // NOTE: TryLock() is broken for NO_THREADS mode, at least in NDEBUG
117 // lines, and change TryLock() to assert(0) or something.
166 inline bool TryLock(); // If free, Lock() and return true, else return false
212 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; }
229 bool Mutex::TryLock() { return is_safe_ ?
251 bool Mutex::TryLock() { return is_safe_ ?
274 bool Mutex::TryLock() { return is_safe_ ?
  /external/open-vcdiff/gflags/src/
mutex.h 48 // NOTE: by default, we have #ifdef'ed out the TryLock() method.
50 // 1) TryLock() under Windows is a bit annoying (it requires a
52 // 2) TryLock() is broken for NO_THREADS mode, at least in NDEBUG
54 // If you need TryLock(), and either these two caveats are not a
124 // lines, and change TryLock() to assert(0) or something.
175 inline bool TryLock(); // If free, Lock() and return true, else return false
223 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; }
242 bool Mutex::TryLock() { return is_safe_ ?
266 bool Mutex::TryLock() { return is_safe_ ?
291 bool Mutex::TryLock() { return is_safe_
    [all...]
  /external/regex-re2/util/
mutex.h 39 // 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; }
112 bool Mutex::TryLock() { return pthread_rwlock_trywrlock(&mutex_) == 0; }
127 bool Mutex::TryLock() { return pthread_mutex_trylock(&mutex_) == 0; }
138 bool Mutex::TryLock() { return TryEnterCriticalSection(&mutex_) != 0; }
  /external/valgrind/unittest/
thread_wrappers_win.h 85 bool TryLock() { return ::TryEnterCriticalSection(&cs_); }
97 bool ReaderTryLock() { return TryLock();}
thread_wrappers_pthread.h 161 bool TryLock() { return (0 == pthread_mutex_trylock(&mu_));}
170 bool ReaderTryLock() { return TryLock();}
248 bool TryLock() {
  /external/chromium/third_party/libjingle/source/talk/base/
stream.cc 498 bool FileStream::TryLock() {
  /external/chromium_org/v8/src/
platform-posix.cc 781 virtual bool TryLock() {
  /external/v8/src/
platform-cygwin.cc 512 virtual bool TryLock() {
platform-freebsd.cc 585 virtual bool TryLock() {
platform-macos.cc 672 virtual bool TryLock() {
platform-solaris.cc 568 virtual bool TryLock() {
platform-linux.cc 846 virtual bool TryLock() {
    [all...]
platform-openbsd.cc 639 virtual bool TryLock() {
  /external/valgrind/main/drd/tests/
tsan_thread_wrappers_pthread.h 203 bool TryLock() { return (0 == pthread_mutex_trylock(&mu_));}
211 bool ReaderTryLock() { return TryLock();}

Completed in 675 milliseconds

1 2