Searched refs:mCond (Results 1 – 9 of 9) sorted by relevance
/system/core/libutils/include/utils/ |
D | Condition.h | 87 pthread_cond_t mCond; 110 pthread_cond_init(&mCond, &attr); in Condition() 115 pthread_cond_destroy(&mCond); in ~Condition() 118 return -pthread_cond_wait(&mCond, &mutex.mMutex); in wait() 150 return -pthread_cond_timedwait(&mCond, &mutex.mMutex, &ts); in waitRelative() 153 pthread_cond_signal(&mCond); in signal() 156 pthread_cond_broadcast(&mCond); in broadcast()
|
/system/tools/hidl/test/hidl_test/ |
D | FooCallback.cpp | 22 : mLock{}, mCond{} { in FooCallback() 39 mCond.signal(); in heyItsYou() 55 mCond.signal(); in heyItsYouIsntIt() 71 mCond.signal(); in heyItsTheMeaningOfLife() 91 ::android::status_t rc = mCond.waitRelative(mLock, leftToWaitNs); in reportResults() 119 mCond.signal(); in youBlockedMeFor()
|
D | FooCallback.h | 34 Condition mCond; member
|
/system/chre/platform/slpi/smgr/ |
D | smr_helper.cc | 48 waitSuccess = mCond.wait_for(mMutex, timeout); in releaseSync() 79 mCond.wait(mMutex); in waitForService() 153 waitSuccess = mCond.wait_for(mMutex, timeout); in sendReqSyncUntyped() 195 mCond.notify_one(); in handleResp() 209 obj->mCond.notify_one(); in smrReleaseCb() 228 obj->mCond.notify_one(); in smrWaitForServiceCb()
|
/system/tools/hidl/ |
D | ConstantExpression.cpp | 328 CHECK(mCond->isEvaluated()); in evaluate() 333 mExpr = std::string("(") + mCond->mExpr + "?" + mTrueVal->mExpr + ":" + mFalseVal->mExpr + ")"; in evaluate() 339 mValue = mCond->mValue ? (static_cast<__type__>(mTrueVal->mValue)) \ in evaluate() 703 : mCond(cond), mTrueVal(trueVal), mFalseVal(falseVal) {} in TernaryConstantExpression() 706 return {mCond, mTrueVal, mFalseVal}; in getConstantExpressions()
|
D | ConstantExpression.h | 208 ConstantExpression* const mCond;
|
/system/chre/platform/slpi/include/chre/platform/slpi/smgr/ |
D | smr_helper.h | 325 ConditionVariable mCond; variable
|
/system/chre/platform/slpi/include/chre/platform/slpi/see/ |
D | see_helper.h | 337 ConditionVariable mCond; variable
|
/system/chre/platform/slpi/see/ |
D | see_helper.cc | 1536 mCond.notify_one(); in handleSnsClientEventMsg() 1573 mCond.notify_one(); in handleSeeResp() 1769 waitSuccess = mCond.wait_for(mMutex, timeoutResp); in sendSeeReqSync() 1842 waitSuccess = mCond.wait_for(mMutex, timeoutInd); in waitForInd()
|