Home
last modified time | relevance | path

Searched refs:getLock (Results 1 – 7 of 7) sorted by relevance

/external/llvm/unittests/ExecutionEngine/Orc/
DRPCUtilsTest.cpp22 std::mutex &getLock() { return Lock; } in getLock() function in Queue
40 std::lock_guard<std::mutex> Lock(InQueue.getLock()); in readBytes()
51 std::lock_guard<std::mutex> Lock(OutQueue.getLock()); in appendBytes()
/external/swiftshader/src/OpenGL/libGLESv2/
DResourceManager.h90 sw::MutexLock *getLock() { return &mMutex; } in getLock() function
DContext.h702 sw::MutexLock *getResourceLock() { return mResourceManager->getLock(); } in getResourceLock()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_deadlock_detector.h115 uptr getLock(uptr idx) const { return all_locks_with_contexts_[idx].lock; } in getLock() function
232 if (!g_.hasEdge(dtls->getLock(i), cur_idx)) in hasAllEdges()
/external/pdfium/fxjs/
Dcjs_field.h230 CJS_Return getLock(CJS_Runtime* pRuntime,
417 JS_STATIC_METHOD(getLock, Field);
Dcjs_field.cpp2439 CJS_Return Field::getLock(CJS_Runtime* pRuntime, in getLock() function in Field
/external/clang/test/SemaCXX/
Dwarn-thread-safety-analysis.cpp3231 const Mutex& getLock(const Inner* i);
3233 void lockInner (Inner* i) EXCLUSIVE_LOCK_FUNCTION(getLock(i));
3234 void unlockInner(Inner* i) UNLOCK_FUNCTION(getLock(i));
3235 void foo(Inner* i) EXCLUSIVE_LOCKS_REQUIRED(getLock(i));
3247 const Mutex& Base::getLock(const Inner* i) LOCK_RETURNED(i->lock_) { in getLock() function in LockReturnedScopeFix::Base