Searched defs:CondVar (Results 1 - 10 of 10) sorted by relevance

/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A DCondVar.h30 class CondVar class
35 ** Function: CondVar
42 CondVar ();
47 ** Function: ~CondVar
54 ~CondVar ();
H A DCondVar.cpp26 #include "CondVar.h"
32 ** Function: CondVar
39 CondVar::CondVar () function in class:CondVar
45 ALOGE ("CondVar::CondVar: fail init; error=0x%X", res);
52 ** Function: ~CondVar
59 CondVar::~CondVar ()
64 ALOGE ("CondVar
[all...]
/external/clang/include/clang/Analysis/Visitors/
H A DCFGRecStmtVisitor.h36 VarDecl *CondVar = 0; local
40 CondVar = cast<CLASS>(S)->getConditionVariable();\
50 static_cast<ImplClass*>(this)->Visit(CondVar->getInit());
/external/valgrind/unittest/
H A Dthread_wrappers_win.h80 friend class CondVar;
144 class CondVar { class
146 CondVar() { function in class:CondVar
151 ~CondVar() {
H A Dthread_wrappers_pthread.h146 /// instead of pthread_mutex_t (only when not used with CondVar or LockWhen).
149 friend class CondVar;
218 class CondVar { class
220 CondVar() { CHECK(0 == pthread_cond_init(&cv_, NULL)); } function in class:CondVar
221 ~CondVar() { CHECK(0 == pthread_cond_destroy(&cv_)); }
/external/libnfc-nci/src/adaptation/
H A DNfcAdaptation.cpp157 ** Description: signal the CondVar to release the thread that is waiting
202 ThreadCondVar CondVar; local
203 AutoThreadMutex guard(CondVar);
204 GKI_create_task ((TASKPTR)nfc_task, NFC_TASK, (INT8*)"NFC_TASK", 0, 0, (pthread_cond_t*)CondVar, (pthread_mutex_t*)CondVar);
205 CondVar.wait();
/external/valgrind/main/drd/tests/
H A Dtsan_thread_wrappers_pthread.h104 class CondVar;
187 /// instead of pthread_mutex_t (only when not used with CondVar or LockWhen).
190 friend class CondVar;
276 class CondVar { class
278 CondVar() { CHECK(0 == pthread_cond_init(&cv_, NULL)); } function in class:CondVar
279 ~CondVar() { CHECK(0 == pthread_cond_destroy(&cv_)); }
/external/clang/lib/Parse/
H A DParseStmt.cpp891 Decl *CondVar = 0; local
892 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true))
967 if (CondExp.isInvalid() && !CondVar)
986 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(),
1025 Decl *CondVar = 0; local
1026 if (ParseParenExprOrCondition(Cond, CondVar, SwitchLoc, false))
1030 = Actions.ActOnStartOfSwitchStmt(SwitchLoc, Cond.get(), CondVar);
1117 Decl *CondVar = 0; local
1118 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true))
1144 if ((Cond.isInvalid() && !CondVar) || Bod
[all...]
/external/clang/lib/Sema/
H A DSemaStmt.cpp388 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar, argument
394 if (CondVar) {
395 ConditionVar = cast<VarDecl>(CondVar);
520 Decl *CondVar) {
524 if (CondVar) {
525 ConditionVar = cast<VarDecl>(CondVar);
595 if (!CondVar) {
1120 Decl *CondVar, Stmt *Body) {
1124 if (CondVar) {
1125 ConditionVar = cast<VarDecl>(CondVar);
519 ActOnStartOfSwitchStmt(SourceLocation SwitchLoc, Expr *Cond, Decl *CondVar) argument
1119 ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, Decl *CondVar, Stmt *Body) argument
[all...]
H A DTreeTransform.h1067 VarDecl *CondVar, Stmt *Then,
1069 return getSema().ActOnIfStmt(IfLoc, Cond, CondVar, Then, ElseLoc, Else);
1077 Expr *Cond, VarDecl *CondVar) {
1079 CondVar);
1096 VarDecl *CondVar, Stmt *Body) {
1097 return getSema().ActOnWhileStmt(WhileLoc, Cond, CondVar, Body);
1117 VarDecl *CondVar, Sema::FullExprArg Inc,
1120 CondVar, Inc, RParenLoc, Body);
1066 RebuildIfStmt(SourceLocation IfLoc, Sema::FullExprArg Cond, VarDecl *CondVar, Stmt *Then, SourceLocation ElseLoc, Stmt *Else) argument
1076 RebuildSwitchStmtStart(SourceLocation SwitchLoc, Expr *Cond, VarDecl *CondVar) argument
1095 RebuildWhileStmt(SourceLocation WhileLoc, Sema::FullExprArg Cond, VarDecl *CondVar, Stmt *Body) argument
1115 RebuildForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, Stmt *Init, Sema::FullExprArg Cond, VarDecl *CondVar, Sema::FullExprArg Inc, SourceLocation RParenLoc, Stmt *Body) argument

Completed in 1522 milliseconds