Home
last modified time | relevance | path

Searched refs:getMutex (Results 1 – 10 of 10) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Support/
DDynamicLibrary.cpp40 static llvm::sys::SmartMutex<true>& getMutex() { in getMutex() function
47 SmartScopedLock<true> lock(getMutex()); in AddSymbol()
75 SmartScopedLock<true> lock(getMutex()); in getPermanentLibrary()
129 SmartScopedLock<true> Lock(getMutex()); in SearchForAddressOfSymbol()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_deadlock_detector2.cc105 Mutex *getMutex(u32 id);
160 Mutex *DD::getMutex(u32 id) { in getMutex() function in __sanitizer::DD
224 Mutex *mtx = getMutex(m->id); in MutexBeforeLock()
228 Mutex *mtx1 = getMutex(id1); in MutexBeforeLock()
350 Mutex *mtx = getMutex(m->id); in MutexDestroy()
369 Mutex *mtx = getMutex(m->id); in CycleCheck()
382 Mutex *mtx1 = getMutex(link.id); in CycleCheck()
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DValueMap.h71 static sys::Mutex *getMutex(const ExtraDataT &/*Data*/) { return NULL; } in getMutex() function
212 sys::Mutex *M = Config::getMutex(Copy.Map->Data);
225 sys::Mutex *M = Config::getMutex(Copy.Map->Data);
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
DDynamicLibrary.inc74 SmartScopedLock<true> lock(getMutex());
117 SmartScopedLock<true> Lock(getMutex());
/external/llvm/include/llvm/IR/
DValueMap.h76 static mutex_type *getMutex(const ExtraDataT &/*Data*/) { return nullptr; } in getMutex() function
258 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data);
270 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data);
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
DExecutionEngine.h52 static sys::Mutex *getMutex(ExecutionEngineState *EES);
/external/clang/test/SemaCXX/
Dwarn-thread-safety-analysis.cpp3510 virtual Mutex* getMutex() = 0;
3515 Mutex* getMutex();
3520 Mutex* getMutex();
3525 Mutex* getMutex(); // overrides Base::getMutex()
3528 void baseFun(Base *b) EXCLUSIVE_LOCKS_REQUIRED(b->getMutex()) { } in baseFun()
3530 void derivedFun(Derived *d) EXCLUSIVE_LOCKS_REQUIRED(d->getMutex()) { in derivedFun()
4553 Mutex* getMutex(Opaque* o) LOCK_RETURNED("");
4556 MutexLock lock(getMutex(o)); in test()
/external/swiftshader/third_party/LLVM/unittests/VMCore/
DValueMapTest.cpp196 static sys::Mutex *getMutex(const ExtraData &Data) { return Data.M; } in getMutex() function
/external/llvm/unittests/IR/
DValueMapTest.cpp195 static MutexT *getMutex(const ExtraData &Data) { return Data.M; } in getMutex() function
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
DExecutionEngine.cpp1113 ExecutionEngineState::AddressMapConfig::getMutex(ExecutionEngineState *EES) { in getMutex() function in ExecutionEngineState::AddressMapConfig