Searched defs:CondVar (Results 1 - 12 of 12) 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
48 ALOGE ("CondVar::CondVar: fail init; error=0x%X", res);
55 ** Function: ~CondVar
62 CondVar::~CondVar ()
67 ALOGE ("CondVar
[all...]
/external/chromium_org/third_party/leveldatabase/src/port/
H A Dport_posix.cc30 CondVar::CondVar(Mutex* mu) function in class:leveldb::port::CondVar
35 CondVar::~CondVar() { PthreadCall("destroy cv", pthread_cond_destroy(&cv_)); }
37 void CondVar::Wait() {
41 void CondVar::Signal() {
45 void CondVar::SignalAll() {
H A Dport_example.h45 class CondVar { class in namespace:leveldb::port
47 explicit CondVar(Mutex* mu);
48 ~CondVar();
H A Dport_posix.h83 class CondVar;
95 friend class CondVar;
103 class CondVar { class in namespace:leveldb::port
105 explicit CondVar(Mutex* mu);
106 ~CondVar();
/external/chromium_org/third_party/leveldatabase/port/
H A Dport_chromium.cc35 CondVar::CondVar(Mutex* mu) function in class:leveldb::port::CondVar
39 CondVar::~CondVar() { }
41 void CondVar::Wait() {
45 void CondVar::Signal(){
49 void CondVar::SignalAll() {
H A Dport_chromium.h48 friend class CondVar;
52 class CondVar { class in namespace:leveldb::port
54 explicit CondVar(Mutex* mu);
55 ~CondVar();
63 DISALLOW_COPY_AND_ASSIGN(CondVar);
/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/libnfc-nci/src/adaptation/
H A DNfcAdaptation.cpp215 ** Description: signal the CondVar to release the thread that is waiting
258 ThreadCondVar CondVar; local
259 AutoThreadMutex guard(CondVar);
260 GKI_create_task ((TASKPTR)nfc_task, NFC_TASK, (INT8*)"NFC_TASK", 0, 0, (pthread_cond_t*)CondVar, (pthread_mutex_t*)CondVar);
261 CondVar.wait();
/external/clang/lib/Parse/
H A DParseStmt.cpp1093 Decl *CondVar = nullptr; local
1094 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true))
1181 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(),
1220 Decl *CondVar = nullptr; local
1221 if (ParseParenExprOrCondition(Cond, CondVar, SwitchLoc, false))
1225 = Actions.ActOnStartOfSwitchStmt(SwitchLoc, Cond.get(), CondVar);
1308 Decl *CondVar = nullptr; local
1309 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true))
1334 if ((Cond.isInvalid() && !CondVar) || Body.isInvalid())
1337 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Bod
[all...]
/external/clang/lib/Sema/
H A DSemaStmt.cpp442 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar, argument
447 if (!CondVal.get() && !CondVar) {
455 if (CondVar) {
456 ConditionVar = cast<VarDecl>(CondVar);
580 Decl *CondVar) {
584 if (CondVar) {
585 ConditionVar = cast<VarDecl>(CondVar);
653 if (!CondVar) {
1206 Decl *CondVar, Stmt *Body) {
1210 if (CondVar) {
579 ActOnStartOfSwitchStmt(SourceLocation SwitchLoc, Expr *Cond, Decl *CondVar) argument
1205 ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, Decl *CondVar, Stmt *Body) argument
[all...]
H A DTreeTransform.h1117 VarDecl *CondVar, Stmt *Then,
1119 return getSema().ActOnIfStmt(IfLoc, Cond, CondVar, Then, ElseLoc, Else);
1127 Expr *Cond, VarDecl *CondVar) {
1129 CondVar);
1146 VarDecl *CondVar, Stmt *Body) {
1147 return getSema().ActOnWhileStmt(WhileLoc, Cond, CondVar, Body);
1167 VarDecl *CondVar, Sema::FullExprArg Inc,
1170 CondVar, Inc, RParenLoc, Body);
1116 RebuildIfStmt(SourceLocation IfLoc, Sema::FullExprArg Cond, VarDecl *CondVar, Stmt *Then, SourceLocation ElseLoc, Stmt *Else) argument
1126 RebuildSwitchStmtStart(SourceLocation SwitchLoc, Expr *Cond, VarDecl *CondVar) argument
1145 RebuildWhileStmt(SourceLocation WhileLoc, Sema::FullExprArg Cond, VarDecl *CondVar, Stmt *Body) argument
1165 RebuildForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, Stmt *Init, Sema::FullExprArg Cond, VarDecl *CondVar, Sema::FullExprArg Inc, SourceLocation RParenLoc, Stmt *Body) argument

Completed in 252 milliseconds