Home
last modified time | relevance | path

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

/hardware/interfaces/biometrics/common/thread/
DWorkerThread.cpp25 mIsDestructing(false), in WorkerThread()
36 mIsDestructing = true; in ~WorkerThread()
43 if (mIsDestructing) { in schedule()
58 while (!mIsDestructing) { in threadFunc()
60 mQueueCond.wait(lock, [this] { return !mQueue.empty() || mIsDestructing; }); in threadFunc()
61 if (mIsDestructing) { in threadFunc()
/hardware/interfaces/biometrics/common/thread/include/thread/
DWorkerThread.h68 std::atomic<bool> mIsDestructing; variable