Home
last modified time | relevance | path

Searched refs:CondVar (Results 1 – 12 of 12) sorted by relevance

/external/libnfc-nci/halimpl/bcm2079x/adaptation/
DCondVar.cpp40 CondVar::CondVar () in CondVar() function in CondVar
63 CondVar::~CondVar () in ~CondVar()
82 void CondVar::wait (Mutex& mutex) in wait()
102 bool CondVar::wait (Mutex& mutex, long millisec) in wait()
141 void CondVar::notifyOne () in notifyOne()
DCondVar.h30 class CondVar
42 CondVar ();
54 ~CondVar ();
DSyncEvent.h123 CondVar mCondVar;
/external/libnfc-nci/src/adaptation/
DNfcAdaptation.cpp272 ThreadCondVar CondVar; in Thread() local
273 AutoThreadMutex guard(CondVar); in Thread()
274 …)nfc_task, NFC_TASK, (INT8*)"NFC_TASK", 0, 0, (pthread_cond_t*)CondVar, (pthread_mutex_t*)CondVar); in Thread()
275 CondVar.wait(); in Thread()
/external/valgrind/drd/tests/
Dtsan_thread_wrappers_pthread.h104 class CondVar; variable
190 friend class CondVar; variable
276 class CondVar {
278 CondVar() { CHECK(0 == pthread_cond_init(&cv_, NULL)); } in CondVar() function
279 ~CondVar() { CHECK(0 == pthread_cond_destroy(&cv_)); } in ~CondVar()
Dtsan_unittest.cpp131 CondVar CV;
4585 CondVar CV, CV2;
4638 CondVar CV, CV2;
4897 CondVar CV;
/external/clang/lib/Parse/
DParseStmt.cpp1117 Decl *CondVar = nullptr; in ParseIfStatement() local
1118 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true)) in ParseIfStatement()
1205 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(), in ParseIfStatement()
1244 Decl *CondVar = nullptr; in ParseSwitchStatement() local
1245 if (ParseParenExprOrCondition(Cond, CondVar, SwitchLoc, false)) in ParseSwitchStatement()
1249 = Actions.ActOnStartOfSwitchStmt(SwitchLoc, Cond.get(), CondVar); in ParseSwitchStatement()
1332 Decl *CondVar = nullptr; in ParseWhileStatement() local
1333 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true)) in ParseWhileStatement()
1358 if ((Cond.isInvalid() && !CondVar) || Body.isInvalid()) in ParseWhileStatement()
1361 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get()); in ParseWhileStatement()
/external/webrtc/talk/app/webrtc/objctests/
DRTCSessionDescriptionSyncObserver.m38 // CondVar used to wait for, and signal arrival of, an SDP-related callback.
/external/clang/lib/Sema/
DSemaStmt.cpp492 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar, in ActOnIfStmt() argument
498 if (CondVar) { in ActOnIfStmt()
499 ConditionVar = cast<VarDecl>(CondVar); in ActOnIfStmt()
584 Decl *CondVar) { in ActOnStartOfSwitchStmt() argument
588 if (CondVar) { in ActOnStartOfSwitchStmt()
589 ConditionVar = cast<VarDecl>(CondVar); in ActOnStartOfSwitchStmt()
1226 Decl *CondVar, Stmt *Body) { in ActOnWhileStmt() argument
1230 if (CondVar) { in ActOnWhileStmt()
1231 ConditionVar = cast<VarDecl>(CondVar); in ActOnWhileStmt()
DTreeTransform.h1165 VarDecl *CondVar, Stmt *Then, in RebuildIfStmt() argument
1167 return getSema().ActOnIfStmt(IfLoc, Cond, CondVar, Then, ElseLoc, Else); in RebuildIfStmt()
1175 Expr *Cond, VarDecl *CondVar) { in RebuildSwitchStmtStart() argument
1177 CondVar); in RebuildSwitchStmtStart()
1194 VarDecl *CondVar, Stmt *Body) { in RebuildWhileStmt() argument
1195 return getSema().ActOnWhileStmt(WhileLoc, Cond, CondVar, Body); in RebuildWhileStmt()
1215 VarDecl *CondVar, Sema::FullExprArg Inc, in RebuildForStmt() argument
1218 CondVar, Inc, RParenLoc, Body); in RebuildForStmt()
/external/clang/docs/
DLibASTMatchersTutorial.rst504 const VarDecl *CondVar = Result.Nodes.getNodeAs<VarDecl>("condVarName");
507 if (!areSameVariable(IncVar, CondVar) || !areSameVariable(IncVar, InitVar))
/external/clang/include/clang/Sema/
DSema.h3317 FullExprArg CondVal, Decl *CondVar,
3322 Decl *CondVar);
3327 Decl *CondVar, Stmt *Body);