HomeSort by relevance Sort by last modified time
    Searched defs:ScopedLock (Results 1 - 5 of 5) 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/chromium_org/content/child/npapi/
webplugin_ime_win.h 73 class ScopedLock {
75 explicit ScopedLock(WebPluginIMEWin* instance) : instance_(instance) {
79 ~ScopedLock() {
  /external/valgrind/main/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 151 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();

Completed in 240 milliseconds