Home
last modified time | relevance | path

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

/system/nfc/src/include/
DNfcAdaptation.h65 explicit operator pthread_cond_t*() { return &mCondVar; }
72 pthread_cond_t mCondVar;
106 ThreadCondVar mCondVar; variable
/system/chre/host/common/
Dst_hal_lpma_handler.cc69 mCondVar.notify_one(); in enable()
148 mCondVar.wait(lock, [this] { return mCondVarPredicate; }); in waitOnStHalRequestAndProcess()
205 mCondVar.notify_one(); in onStHalServiceDeath()
/system/nfc/src/adaptation/
DNfcAdaptation.cc368 AutoThreadMutex guard(mCondVar); in Initialize()
371 mCondVar.wait(); in Initialize()
439 void NfcAdaptation::signal() { mCondVar.signal(); } in signal()
882 pthread_cond_init(&mCondVar, &CondAttr); in ThreadCondVar()
896 ThreadCondVar::~ThreadCondVar() { pthread_cond_destroy(&mCondVar); } in ~ThreadCondVar()
908 pthread_cond_wait(&mCondVar, *this); in wait()
923 pthread_cond_signal(&mCondVar); in signal()
/system/chre/host/common/include/chre_host/
Dst_hal_lpma_handler.h129 std::condition_variable mCondVar; variable