HomeSort by relevance Sort by last modified time
    Searched full:trylock (Results 76 - 100 of 402) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/lldb/source/Host/common/
Mutex.cpp 166 Mutex::Locker::TryLock (Mutex &mutex, const char *failure_message)
174 if (mutex.TryLock(failure_message) == 0)
297 // If the mutex is already locked, TryLock() will not block waiting
304 Mutex::TryLock(const char *failure_message)
378 LoggingMutex::TryLock (const char *failure_message)
381 int x = Mutex::TryLock(failure_message);
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_linux.cc 146 bool Mutex::TryLock() {
290 ev->res = static_cast<Mutex*>(ev->ptr)->TryLock();
424 bool ScopedThread::TryLock(const Mutex &m) {
  /external/valgrind/main/drd/
drd_mutex.c 234 const Bool trylock)
245 trylock ? "pre_mutex_lock " : "mutex_trylock ",
264 if (! trylock
  /external/valgrind/main/drd/tests/
Makefile.am 320 trylock.stderr.exp \
321 trylock.vgtest \
368 trylock \
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioContext.h 182 bool tryLock(bool& mustReleaseLock);
212 // In AudioNode::breakConnection() and deref(), a tryLock() is used for
ConvolverNode.cpp 95 // Too bad - the tryLock() failed. We must be in the middle of setting a new impulse response.
MediaElementAudioSourceNode.cpp 117 // Use a tryLock() to avoid contention in the real-time audio thread.
AudioBufferSourceNode.cpp 98 // The audio thread can't block on this lock, so we call tryLock() instead.
138 // Too bad - the tryLock() failed. We must be in the middle of changing buffers and were already outputting silence anyway.
AudioNode.cpp 501 // graph lock. In the case of the audio thread, we must use a tryLock to
508 hasLock = context()->tryLock(mustReleaseLock);
PannerNode.cpp 125 // The audio thread can't block on this lock, so we call tryLock() instead.
157 // Too bad - The tryLock() failed.
  /external/deqp/framework/common/
tcuApp.cpp 168 if (!m_crashLock.tryLock() || m_crashed)
191 if (!m_crashLock.tryLock() || m_crashed)
  /external/deqp/framework/delibs/decpp/
deMutex.hpp 45 bool tryLock (void) throw();
114 inline bool Mutex::tryLock (void) throw()
  /external/chromium_org/base/synchronization/
lock_unittest.cc 111 TEST(LockTest, TryLock) {
  /external/chromium_org/chrome/common/
service_process_util_posix.cc 26 if (lock->TryLock()) {
  /external/chromium_org/third_party/sfntly/cpp/src/test/
lock_test.cc 237 TEST(LockTest, TryLock) {
  /external/clang/test/PCH/
thread-safety-attrs.cpp 38 bool TryLock() __attribute__((exclusive_trylock_function(true)));
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_quarantine.h 68 if (cache_.Size() > max_size_ && recycle_mutex_.TryLock())
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_mutex_test.cc 43 if (!mtx_->TryLock())
  /external/deqp/execserver/
xsTcpServer.cpp 126 if (m_connectionListLock.tryLock())
  /external/lldb/include/lldb/Host/
ProcessRunLock.h 119 TryLock (ProcessRunLock *lock)
  /external/sfntly/cpp/src/test/
lock_test.cc 237 TEST(LockTest, TryLock) {
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
CMutex.cpp 66 int32_t CMutex::trylock( function in class:CMutex
  /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); }
  /libcore/luni/src/main/java/java/nio/channels/
FileChannel.java 192 * <code>tryLock()</code> methods.
567 * {@code fileChannel.tryLock(0L, Long.MAX_VALUE, false);}
583 public final FileLock tryLock() throws IOException {
584 return tryLock(0L, Long.MAX_VALUE, false);
616 public abstract FileLock tryLock(long position, long size, boolean shared)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadingWin.cpp 182 bool Mutex::tryLock()
210 bool RecursiveMutex::tryLock()

Completed in 3675 milliseconds

1 2 34 5 6 7 8 91011>>