Home
last modified time | relevance | path

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

/hardware/google/aemu/base/
DThread_pthread.cpp33 assert(!mStarted || mFinished); in ~Thread()
34 if ((mFlags & ThreadFlags::Detach) == ThreadFlags::NoFlags && mStarted && in ~Thread()
42 if (mStarted) { in start()
47 mStarted = true; in start()
85 if (!mStarted || (mFlags & ThreadFlags::Detach) != ThreadFlags::NoFlags) { in wait()
104 if (!mStarted || (mFlags & ThreadFlags::Detach) != ThreadFlags::NoFlags) { in tryWait()
DThread_win32.cpp32 assert(!mStarted || mFinished); in ~Thread()
38 if (mStarted) { in start()
43 mStarted = true; in start()
84 if (!mStarted || (mFlags & ThreadFlags::Detach) != ThreadFlags::NoFlags) { in wait()
101 if (!mStarted || (mFlags & ThreadFlags::Detach) != ThreadFlags::NoFlags) { in tryWait()
/hardware/google/gfxstream/guest/android-emu/aemu/base/threads/
DAndroidThread_pthread.cpp43 assert(!mStarted || mFinished); in ~Thread()
44 if ((mFlags & ThreadFlags::Detach) == ThreadFlags::NoFlags && mStarted && in ~Thread()
52 if (mStarted) { in start()
57 mStarted = true; in start()
88 if (!mStarted || (mFlags & ThreadFlags::Detach) != ThreadFlags::NoFlags) { in wait()
107 if (!mStarted || (mFlags & ThreadFlags::Detach) != ThreadFlags::NoFlags) { in tryWait()
DAndroidThread.h124 bool mStarted = false; variable
/hardware/google/aemu/base/include/aemu/base/threads/
DWorkerThread.h84 if (!mStarted.compare_exchange_strong(expectedStarted, true)) { in start()
125 if (!mStarted || mFinished) { in enqueueImpl()
182 std::atomic_bool mStarted = false; variable
DThread.h130 bool mStarted = false; variable
/hardware/google/aemu/snapshot/
DTextureLoader.cpp33 if (mStarted) { in start()
37 mStarted = true; in start()
/hardware/google/aemu/snapshot/include/snapshot/
DTextureLoader.h111 bool mStarted = false; variable
/hardware/interfaces/graphics/composer/2.1/utils/hwc2onfbadapter/include/hwc2onfbadapter/
DHWC2OnFbAdapter.h120 bool mStarted{false};
/hardware/interfaces/graphics/composer/2.1/utils/hwc2onfbadapter/
DHWC2OnFbAdapter.cpp846 mStarted = true; in start()
853 mStarted = false; in stop()
877 if (!mStarted) { in vsyncLoop()
883 mCondition.wait(lock, [this] { return mCallbackEnabled || !mStarted; }); in vsyncLoop()
884 if (!mStarted) { in vsyncLoop()