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

  /external/deqp/framework/delibs/decpp/
deMutex.hpp 57 * ScopedLock provides helper for maintaining Mutex lock for the duration
59 * when ScopedLock goes out of scope.
61 class ScopedLock
64 ScopedLock (Mutex& mutex);
65 ~ScopedLock (void) { m_mutex.unlock(); }
68 ScopedLock (const ScopedLock& other); // Not allowed!
69 ScopedLock& operator= (const ScopedLock& other); // Not allowed!
119 // ScopedLock inline implementations
    [all...]
  /external/valgrind/drd/tests/
monitor_example.cpp 155 class ScopedLock
158 ScopedLock(Monitor& m)
162 ~ScopedLock()
170 ScopedLock(const ScopedLock&);
171 ScopedLock& operator=(const ScopedLock&);
186 ScopedLock sl(m_monitor);
191 ScopedLock sl(m_monitor);
197 ScopedLock sl(m_monitor)
    [all...]
  /external/llvm/include/llvm/Support/
Mutex.h 154 typedef SmartScopedLock<false> ScopedLock;
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Mutex.h 150 typedef SmartScopedLock<false> ScopedLock;
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Mutex.h 154 typedef SmartScopedLock<false> ScopedLock;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
Mutex.h 154 typedef SmartScopedLock<false> ScopedLock;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
Mutex.h 154 typedef SmartScopedLock<false> ScopedLock;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
Mutex.h 154 typedef SmartScopedLock<false> ScopedLock;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Mutex.h 154 typedef SmartScopedLock<false> ScopedLock;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
Mutex.h 154 typedef SmartScopedLock<false> ScopedLock;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
Mutex.h 154 typedef SmartScopedLock<false> ScopedLock;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
Mutex.h 154 typedef SmartScopedLock<false> ScopedLock;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Mutex.h 154 typedef SmartScopedLock<false> ScopedLock;
  /frameworks/base/core/java/android/hardware/camera2/utils/
CloseableLock.java 73 public class ScopedLock implements AutoCloseable {
74 private ScopedLock() {}
119 ScopedLock scoper = acquireExclusiveLock();
162 * @return {@code ScopedLock} instance if the lock was acquired, or {@code null} if the lock
167 public ScopedLock acquireLock() {
214 return new ScopedLock();
229 * @return {@code ScopedLock} instance if the lock was acquired, or {@code null} if the lock
235 public ScopedLock acquireExclusiveLock() {
287 return new ScopedLock();
  /external/dng_sdk/source/
dng_pthread.cpp 108 struct ScopedLock
112 ScopedLock(dng_pthread_mutex_impl *arg) : mutex(arg)
116 ScopedLock(dng_pthread_mutex_impl &arg) : mutex(&arg)
120 ~ScopedLock()
125 ScopedLock &operator=(const ScopedLock &) { }
126 ScopedLock(const ScopedLock &) { }
136 ScopedLock lock(validationLock);
147 ScopedLock lock(validationLock)
    [all...]

Completed in 1737 milliseconds