/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
CondVar.cpp | 26 #include "CondVar.h" 32 ** Function: CondVar 39 CondVar::CondVar () 45 ALOGE ("CondVar::CondVar: fail init; error=0x%X", res); 52 ** Function: ~CondVar 59 CondVar::~CondVar () 64 ALOGE ("CondVar::~CondVar: fail destroy; error=0x%X", res) [all...] |
CondVar.h | 30 class CondVar 35 ** Function: CondVar 42 CondVar (); 47 ** Function: ~CondVar 54 ~CondVar ();
|
SyncEvent.h | 25 #include "CondVar.h" 123 CondVar mCondVar;
|
/packages/apps/Nfc/nci/jni/ |
CondVar.cpp | 21 #include "CondVar.h" 28 ** Function: CondVar 35 CondVar::CondVar () 41 ALOGE ("CondVar::CondVar: fail init; error=0x%X", res); 48 ** Function: ~CondVar 55 CondVar::~CondVar () 60 ALOGE ("CondVar::~CondVar: fail destroy; error=0x%X", res) [all...] |
CondVar.h | 26 class CondVar 31 ** Function: CondVar 38 CondVar (); 43 ** Function: ~CondVar 50 ~CondVar ();
|
SyncEvent.h | 21 #include "CondVar.h" 119 CondVar mCondVar;
|
/external/valgrind/main/none/tests/ |
pth_cvsimple.c | 83 printf("condvar was hit!\n"); 85 printf("condvar was multi-hit...\n"); 87 printf("condvar was missed...\n");
|
pth_cvsimple.stdout.exp | 22 condvar was hit!
|
/external/clang/include/clang/Analysis/Visitors/ |
CFGRecStmtVisitor.h | 36 VarDecl *CondVar = 0; 40 CondVar = cast<CLASS>(S)->getConditionVariable();\ 50 static_cast<ImplClass*>(this)->Visit(CondVar->getInit());
|
/external/valgrind/unittest/ |
thread_wrappers_win.h | 80 friend class CondVar; 144 class CondVar { 146 CondVar() { 151 ~CondVar() {
|
thread_wrappers_pthread.h | 146 /// instead of pthread_mutex_t (only when not used with CondVar or LockWhen). 149 friend class CondVar; 218 class CondVar { 220 CondVar() { CHECK(0 == pthread_cond_init(&cv_, NULL)); } 221 ~CondVar() { CHECK(0 == pthread_cond_destroy(&cv_)); } 236 // pthreads do not allow to use condvar with rwlock so we can't make
|
thread_wrappers.h | 87 class CondVar;
|
racecheck_unittest.cc | 77 static CondVar CV; 116 // test02: TN. Synchronization via CondVar. {{{1 243 // test05: FP. Synchronization via CondVar, but waiter does not block. {{{1 244 // Since CondVar::Wait() is not called, we get a false positive. 247 // Two write accesses to GLOB are synchronized via CondVar. 295 // test06: TN. Synchronization via CondVar, but Waker gets there first. {{{1 878 // test22: TP. Incorrect synchronization via CondVar::WaitWithTimeout(). {{{1 882 // True race. We timeout in CondVar::WaitWithTimeout(). [all...] |
bigtest.cc | 445 namespace condvar { namespace in namespace:publishing 467 CondVar CV;
|
posix_tests.cc | 55 static CondVar CV; 58 // test11: FP. Synchronization via CondVar, 2 workers. {{{1
|
/external/valgrind/main/drd/tests/ |
tsan_thread_wrappers_pthread.h | 104 class CondVar; 187 /// instead of pthread_mutex_t (only when not used with CondVar or LockWhen). 190 friend class CondVar; 276 class CondVar { 278 CondVar() { CHECK(0 == pthread_cond_init(&cv_, NULL)); } 279 ~CondVar() { CHECK(0 == pthread_cond_destroy(&cv_)); } 295 // pthreads do not allow to use condvar with rwlock so we can't make
|
tsan_unittest.cpp | 127 CondVar CV; 356 // test02: TN. Synchronization via CondVar. {{{1 483 // test05: FP. Synchronization via CondVar, but waiter does not block. {{{1 484 // Since CondVar::Wait() is not called, we get a false positive. 487 // Two write accesses to GLOB are synchronized via CondVar. 537 // test06: TN. Synchronization via CondVar, but Waker gets there first. {{{1 730 // test11: FP. Synchronization via CondVar, 2 workers. {{{1 1181 // test22: TP. Incorrect synchronization via CondVar::WaitWithTimeout(). {{{1 1185 // True race. We timeout in CondVar::WaitWithTimeout(). [all...] |
/external/libnfc-nci/src/adaptation/ |
NfcAdaptation.cpp | 180 ** Description: signal the CondVar to release the thread that is waiting 223 ThreadCondVar CondVar; 224 AutoThreadMutex guard(CondVar); 225 GKI_create_task ((TASKPTR)nfc_task, NFC_TASK, (INT8*)"NFC_TASK", 0, 0, (pthread_cond_t*)CondVar, (pthread_mutex_t*)CondVar); 226 CondVar.wait();
|
/external/clang/lib/AST/ |
Stmt.cpp | 861 ForStmt::ForStmt(ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar, 867 setConditionVariable(C, condVar); 874 if (!SubExprs[CONDVAR]) 877 DeclStmt *DS = cast<DeclStmt>(SubExprs[CONDVAR]); 883 SubExprs[CONDVAR] = 0; 888 SubExprs[CONDVAR] = new (C) DeclStmt(DeclGroupRef(V), VarRange.getBegin(), [all...] |
/ndk/sources/cxx-stl/gabi++/src/ |
one_time_construction.cc | 48 /* In this implementation, we use a single global mutex+condvar pair.
|
/external/clang/lib/Sema/ |
SemaStmt.cpp | 418 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar, 423 if (!CondVal.get() && !CondVar) { 431 if (CondVar) { 432 ConditionVar = cast<VarDecl>(CondVar); 557 Decl *CondVar) { 561 if (CondVar) { 562 ConditionVar = cast<VarDecl>(CondVar); 632 if (!CondVar) { [all...] |
/external/clang/lib/Parse/ |
ParseStmt.cpp | [all...] |
/external/chromium/chrome/browser/sync/syncable/ |
syncable_unittest.cc | 1432 base::ConditionVariable condvar; member in struct:syncable::__anon4485::Step [all...] |
/external/chromium/base/third_party/dynamic_annotations/ |
dynamic_annotations.h | 90 Annotations useful when implementing condition variables such as CondVar, 281 RWLOCK* and CONDVAR*. */
|
/external/clang/docs/ |
LibASTMatchersTutorial.rst | 476 const VarDecl *CondVar = Result.Nodes.getNodeAs<VarDecl>(ConditionVarName); 485 if (!areSameVariable(IncVar, CondVar) || !areSameVariable(IncVar, InitVar))
|