Home
last modified time | relevance | path

Searched refs:mCvMutex (Results 1 – 4 of 4) sorted by relevance

/hardware/interfaces/audio/aidl/default/bluetooth/
DDevicePortProxy.cpp102 std::lock_guard guard(mCvMutex); in registerPort()
168 std::lock_guard guard(mCvMutex); in controlResultHandler()
236 std::lock_guard guard(mCvMutex); in sessionChangedHandler()
311 std::lock_guard guard(mCvMutex); in standby()
323 std::unique_lock lock(mCvMutex); in condWaitState()
324 base::ScopedLockAssertion lock_assertion(mCvMutex); in condWaitState()
329 base::ScopedLockAssertion lock_assertion(mCvMutex); in condWaitState()
337 base::ScopedLockAssertion lock_assertion(mCvMutex); in condWaitState()
358 std::unique_lock lock(mCvMutex); in start()
359 base::ScopedLockAssertion lock_assertion(mCvMutex); in start()
[all …]
/hardware/interfaces/audio/aidl/default/include/core-impl/
DDevicePortProxy.h193 BluetoothStreamState mState GUARDED_BY(mCvMutex);
206 mutable std::mutex mCvMutex;
207 std::condition_variable mInternalCv GUARDED_BY(mCvMutex);
/hardware/interfaces/tests/multithread/1.0/default/
DMultithread.h34 std::mutex mCvMutex; member
DMultithread.cpp35 std::unique_lock<std::mutex> lk(mCvMutex); in runNewThread()