Home
last modified time | relevance | path

Searched refs:mMutex (Results 1 – 22 of 22) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/common/
DSynchronizedValue.h208 std::lock_guard<Lockable> lock(other.mMutex);
214 std::lock_guard<Lockable> lock(other.mMutex);
222 std::unique_lock<Lockable> lock1(mMutex, std::defer_lock);
223 std::unique_lock<Lockable> lock2(other.mMutex, std::defer_lock);
234 std::unique_lock<Lockable> lock1(mMutex, std::defer_lock);
235 std::unique_lock<Lockable> lock2(other.mMutex, std::defer_lock);
245 std::lock_guard<Lockable> lock(mMutex);
254 std::lock_guard<Lockable> lock(mMutex);
262 std::lock_guard<Lockable> lock(mMutex);
274 std::unique_lock<Lockable> lock1(mMutex, std::defer_lock);
[all …]
/third_party/openh264/module/
DRefCounted.h38 : mMutex(aMutex) in AutoLock()
41 if (mMutex) { in AutoLock()
42 mMutex->Acquire(); in AutoLock()
46 if (mMutex) { in ~AutoLock()
47 mMutex->Release(); in ~AutoLock()
51 GMPMutex* mMutex;
58 , mMutex(GMPCreateMutex()) in AtomicRefCount()
60 assert(mMutex); in AtomicRefCount()
64 if (mMutex) { in ~AtomicRefCount()
65 mMutex->Destroy(); in ~AtomicRefCount()
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DWorkerThread.cpp96 std::mutex mMutex; member in angle::AsyncWaitableEvent
112 std::unique_lock<std::mutex> lock(mMutex); in wait()
122 std::lock_guard<std::mutex> lock(mMutex); in isReady()
146 std::mutex mMutex; member in angle::AsyncWorkerPool
160 std::lock_guard<std::mutex> lock(mMutex); in postWorkerTask()
170 std::lock_guard<std::mutex> lock(mMutex); in setMaxThreads()
183 std::lock_guard<std::mutex> lock(mMutex); in checkToRunPendingTasks()
197 std::lock_guard<std::mutex> lock(mMutex); in checkToRunPendingTasks()
207 std::lock_guard<std::mutex> waitableLock(waitable->mMutex); in checkToRunPendingTasks()
231 std::mutex mMutex; member in angle::DelegateWaitableEvent
[all …]
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/
DMultiThreadSteps.h34 : mCurrentStep(currentStep), mMutex(mutex), mCondVar(condVar) in ThreadSynchronization()
41 std::unique_lock<std::mutex> lock(*mMutex); in ~ThreadSynchronization()
56 std::unique_lock<std::mutex> lock(*mMutex); in waitForStep()
73 std::unique_lock<std::mutex> lock(*mMutex); in nextStep()
81 std::mutex *mMutex; variable
/third_party/skia/third_party/externals/dawn/src/common/
DConcurrentCache.h30 std::lock_guard<std::mutex> lock(mMutex); in Find()
39 std::lock_guard<std::mutex> lock(mMutex); in Insert()
45 std::lock_guard<std::mutex> lock(mMutex); in Erase()
50 std::mutex mMutex;
/third_party/skia/third_party/externals/dawn/src/dawn_platform/
DWorkerThread.cpp31 std::unique_lock<std::mutex> lock(mMutex); in Wait()
36 std::lock_guard<std::mutex> lock(mMutex); in IsComplete()
42 std::lock_guard<std::mutex> lock(mMutex); in MarkAsComplete()
49 std::mutex mMutex; member in __anon1ef4bd740111::AsyncWaitableEventImpl
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
DAsyncTaskTests.cpp37 std::lock_guard<std::mutex> lock(mMutex); in AddResult()
44 std::lock_guard<std::mutex> lock(mMutex); in GetAllResults()
51 std::mutex mMutex; member in __anon349beb0d0111::ConcurrentTaskResultQueue
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
DShaderCache.h44 std::lock_guard<std::mutex> lock(mMutex); in create()
75 std::lock_guard<std::mutex> lock(mMutex); in clear()
100 std::mutex mMutex; variable
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
DEGLReusableSync.cpp64 mMutex.lock(); in clientWait()
65 waitStatus = mCondVar.wait_for(mMutex, duration); in clientWait()
66 mMutex.unlock(); in clientWait()
DEGLReusableSync.h49 std::unique_lock<std::mutex> mMutex; variable
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
DEGLContextASANTest.cpp101 : mCurrentStep(currentStep), mMutex(mutex), mCondVar(condVar) in TEST_P()
108 std::unique_lock<std::mutex> lock(*mMutex); in TEST_P()
121 std::mutex *mMutex; in TEST_P() member in __anon59bc102f0111::TEST_P::AbortOnFailure
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DPersistentCache.cpp32 std::lock_guard<std::mutex> lock(mMutex); in LoadData()
50 std::lock_guard<std::mutex> lock(mMutex); in StoreData()
DPersistentCache.h87 std::mutex mMutex; variable
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DShaderModuleVk.cpp38 std::lock_guard<std::mutex> lock(mMutex); in ~ConcurrentTransformedShaderModuleCache()
46 std::lock_guard<std::mutex> lock(mMutex); in FindShaderModule()
59 std::lock_guard<std::mutex> lock(mMutex); in AddOrGetCachedShaderModule()
DShaderModuleVk.h56 std::mutex mMutex; variable
DRenderPassCache.cpp88 std::lock_guard<std::mutex> lock(mMutex); in ~RenderPassCache()
97 std::lock_guard<std::mutex> lock(mMutex); in GetRenderPass()
DRenderPassCache.h100 std::mutex mMutex; variable
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
DResourceManager.h90 sw::MutexLock *getLock() { return &mMutex; } in getLock()
94 sw::MutexLock mMutex; variable
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DCommandProcessor.h46 std::lock_guard<std::mutex> lock(mMutex); in resetSharedFence()
51 std::mutex mMutex;
DCommandProcessor.cpp68 std::lock_guard<std::mutex> lock(mMutex); in newSharedFence()
94 std::lock_guard<std::mutex> lock(mMutex); in destroy()
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp172632 mutable mozilla::Mutex mMutex; member in imgRequest
/third_party/libabigail/tests/data/test-read-dwarf/
Dtest-libandroid.so.abi6584 …<var-decl name='mMutex' type-id='7a6844eb' visibility='default' filepath='system/core/libutils/inc…