Home
last modified time | relevance | path

Searched refs:mStopped (Results 1 – 2 of 2) sorted by relevance

/device/generic/goldfish-opengl/android-emu/android/base/synchronization/
DAndroidMessageChannel.cpp30 mStopped = true; in stop()
50 while (mCount >= mCapacity && !mStopped) { in beforeWrite()
65 if (mCount >= mCapacity || mStopped) { in beforeTryWrite()
84 while (mCount == 0 && !mStopped) { in beforeRead()
93 if (mCount == 0 || mStopped) { in beforeTryRead()
102 while (mCount == 0 && !mStopped) { in beforeTimedRead()
DAndroidMessageChannel.h95 bool isStoppedLocked() const { return mStopped; } in isStoppedLocked()
101 bool mStopped = false; variable