HomeSort by relevance Sort by last modified time
    Searched refs:CondVar (Results 1 - 14 of 14) sorted by null

  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
CondVar.h 30 class CondVar
35 ** Function: CondVar
42 CondVar ();
47 ** Function: ~CondVar
54 ~CondVar ();
CondVar.cpp 26 #include "CondVar.h"
33 ** Function: CondVar
40 CondVar::CondVar ()
49 ALOGE ("CondVar::CondVar: fail init; error=0x%X", res);
56 ** Function: ~CondVar
63 CondVar::~CondVar ()
68 ALOGE ("CondVar::~CondVar: fail destroy; error=0x%X", res)
    [all...]
SyncEvent.h 25 #include "CondVar.h"
123 CondVar mCondVar;
  /packages/apps/Nfc/nci/jni/
CondVar.h 26 class CondVar
31 ** Function: CondVar
38 CondVar ();
43 ** Function: ~CondVar
50 ~CondVar ();
CondVar.cpp 21 #include "CondVar.h"
31 ** Function: CondVar
38 CondVar::CondVar ()
47 ALOGE ("CondVar::CondVar: fail init; error=0x%X", res);
54 ** Function: ~CondVar
61 CondVar::~CondVar ()
66 ALOGE ("CondVar::~CondVar: fail destroy; error=0x%X", res)
    [all...]
SyncEvent.h 21 #include "CondVar.h"
119 CondVar mCondVar;
  /external/libnfc-nci/src/adaptation/
NfcAdaptation.cpp 229 ** Description: signal the CondVar to release the thread that is waiting
272 ThreadCondVar CondVar;
273 AutoThreadMutex guard(CondVar);
274 GKI_create_task ((TASKPTR)nfc_task, NFC_TASK, (INT8*)"NFC_TASK", 0, 0, (pthread_cond_t*)CondVar, (pthread_mutex_t*)CondVar);
275 CondVar.wait();
  /external/valgrind/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 131 CondVar CV;
360 // test02: TN. Synchronization via CondVar. {{{1
487 // test05: FP. Synchronization via CondVar, but waiter does not block. {{{1
488 // Since CondVar::Wait() is not called, we get a false positive.
491 // Two write accesses to GLOB are synchronized via CondVar.
541 // test06: TN. Synchronization via CondVar, but Waker gets there first. {{{1
734 // test11: FP. Synchronization via CondVar, 2 workers. {{{1
1185 // test22: TP. Incorrect synchronization via CondVar::WaitWithTimeout(). {{{1
1189 // True race. We timeout in CondVar::WaitWithTimeout().
    [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp     [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 492 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar,
498 if (CondVar) {
499 ConditionVar = cast<VarDecl>(CondVar);
584 Decl *CondVar) {
588 if (CondVar) {
589 ConditionVar = cast<VarDecl>(CondVar);
    [all...]
TreeTransform.h     [all...]
  /prebuilts/tools/common/m2/repository/backport-util-concurrent/backport-util-concurrent/3.1/
backport-util-concurrent-3.1.jar 
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 984 milliseconds