HomeSort by relevance Sort by last modified time
    Searched refs:ScopedLock (Results 1 - 25 of 28) sorted by null

1 2

  /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...]
deBlockBuffer.hpp 147 ScopedLock readLock (m_readLock);
148 ScopedLock writeLock (m_writeLock);
  /external/deqp/framework/platform/lnx/
tcuLnx.cpp 43 de::ScopedLock lock(m_mutex);
49 de::ScopedLock lock(m_mutex);
  /external/gemmlowp/profiling/
instrumentation.h 94 struct ScopedLock {
95 ScopedLock(Mutex* m) : _m(m) { _m->Lock(); }
96 ~ScopedLock() { _m->Unlock(); }
120 ScopedLock sl(lock);
127 ScopedLock sl(lock);
133 ScopedLock sl(lock);
171 ScopedLock sl(GlobalMutexes::Profiler());
220 ScopedLock sl(GlobalMutexes::Profiler());
profiler.h 310 ScopedLock sl(thread->stack.lock);
333 ScopedLock sl(GlobalMutexes::Profiler());
350 ScopedLock sl(GlobalMutexes::Profiler());
360 ScopedLock sl(GlobalMutexes::Profiler());
  /external/deqp/framework/platform/android/
tcuAndroidWindow.cpp 59 de::ScopedLock lock(m_stateLock);
72 de::ScopedLock lock(m_stateLock);
89 de::ScopedLock lock(m_stateLock);
101 de::ScopedLock lock(m_stateLock);
107 de::ScopedLock lock(m_stateLock);
  /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...]
  /external/deqp/executor/
xeCallQueue.cpp 72 de::ScopedLock lock(m_lock);
92 de::ScopedLock lock(m_lock);
105 de::ScopedLock lock(m_lock);
112 de::ScopedLock lock (m_lock);
135 de::ScopedLock lock(m_lock);
149 de::ScopedLock lock(m_lock);
xeTcpIpLink.cpp 94 de::ScopedLock lock(m_lock);
101 de::ScopedLock lock(m_lock);
109 de::ScopedLock lock(m_lock);
123 de::ScopedLock lock(m_lock);
166 de::ScopedLock lock(m_lock);
172 de::ScopedLock lock(m_lock);
  /external/deqp/execserver/
xsTcpServer.cpp 88 de::ScopedLock lock(m_connectionListLock);
100 de::ScopedLock lock(m_connectionListLock);
106 de::ScopedLock lock(m_connectionListLock);
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Mutex.h 150 typedef SmartScopedLock<false> ScopedLock;
  /external/llvm/include/llvm/Support/
Mutex.h 154 typedef SmartScopedLock<false> ScopedLock;
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 196 sys::ScopedLock L(*gCrashRecoveryContextMutex);
212 sys::ScopedLock L(*gCrashRecoveryContextMutex);
282 sys::ScopedLock L(*gCrashRecoveryContextMutex);
301 sys::ScopedLock L(*gCrashRecoveryContextMutex);
  /external/swiftshader/third_party/LLVM/lib/Support/
CrashRecoveryContext.cpp 179 sys::ScopedLock L(gCrashRecoveryContexMutex);
195 sys::ScopedLock L(gCrashRecoveryContexMutex);
264 sys::ScopedLock L(gCrashRecoveryContexMutex);
285 sys::ScopedLock L(gCrashRecoveryContexMutex);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
Mutex.h 155 typedef SmartScopedLock<false> ScopedLock;
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Mutex.h 154 typedef SmartScopedLock<false> ScopedLock;
  /external/deqp/framework/platform/ios/
tcuIOSApp.mm 93 de::ScopedLock stateLock(m_lock);
103 de::ScopedLock stateLock(m_lock);
111 de::ScopedLock stateLock(m_lock);
117 de::ScopedLock stateLock(m_lock);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
PseudoSourceValue.cpp 75 sys::ScopedLock locked(PG.Lock);
  /external/deqp/framework/common/
tcuThreadUtil.cpp 245 de::ScopedLock lock(m_messageLock);
251 de::ScopedLock lock(m_messageLock);
257 de::ScopedLock lock(m_messageLock);
  /external/gemmlowp/eight_bit_int_gemm/
eight_bit_int_gemm.cc 310 ScopedLock sl(GlobalMutexes::EightBitIntGemm());
347 ScopedLock sl(GlobalMutexes::EightBitIntGemm());
408 ScopedLock sl(GlobalMutexes::EightBitIntGemm());
414 ScopedLock sl(GlobalMutexes::EightBitIntGemm());
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
CrashRecoveryContext.cpp 120 sys::ScopedLock L(*gCrashRecoveryContextMutex);
129 sys::ScopedLock L(*gCrashRecoveryContextMutex);
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationUtil.cpp 573 const de::ScopedLock dataLock (m_lock);
588 const de::ScopedLock dataLock (m_lock);
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVUtil.h 107 llvm::sys::ScopedLock mapGuard(MapLock);
115 llvm::sys::ScopedLock mapGuard(MapLock);
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 99 sys::ScopedLock Writer(*FunctionsLock);
481 sys::ScopedLock Writer(*FunctionsLock);
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 99 sys::ScopedLock Writer(*FunctionsLock);
486 sys::ScopedLock Writer(*FunctionsLock);

Completed in 774 milliseconds

1 2