HomeSort by relevance Sort by last modified time
    Searched refs:CondVar (Results 1 - 22 of 22) 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"
32 ** Function: CondVar
39 CondVar::CondVar ()
48 ALOGE ("CondVar::CondVar: fail init; error=0x%X", res);
55 ** Function: ~CondVar
62 CondVar::~CondVar ()
67 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"
30 ** Function: CondVar
37 CondVar::CondVar ()
46 ALOGE ("CondVar::CondVar: fail init; error=0x%X", res);
53 ** Function: ~CondVar
60 CondVar::~CondVar ()
65 ALOGE ("CondVar::~CondVar: fail destroy; error=0x%X", res)
    [all...]
SyncEvent.h 21 #include "CondVar.h"
119 CondVar mCondVar;
  /external/chromium_org/third_party/leveldatabase/src/port/
port_posix.cc 30 CondVar::CondVar(Mutex* mu)
35 CondVar::~CondVar() { PthreadCall("destroy cv", pthread_cond_destroy(&cv_)); }
37 void CondVar::Wait() {
41 void CondVar::Signal() {
45 void CondVar::SignalAll() {
port_example.h 45 class CondVar {
47 explicit CondVar(Mutex* mu);
48 ~CondVar();
port_posix.h 83 class CondVar;
95 friend class CondVar;
103 class CondVar {
105 explicit CondVar(Mutex* mu);
106 ~CondVar();
  /external/chromium_org/third_party/leveldatabase/port/
port_chromium.cc 35 CondVar::CondVar(Mutex* mu)
39 CondVar::~CondVar() { }
41 void CondVar::Wait() {
45 void CondVar::Signal(){
49 void CondVar::SignalAll() {
port_chromium.h 48 friend class CondVar;
52 class CondVar {
54 explicit CondVar(Mutex* mu);
55 ~CondVar();
63 DISALLOW_COPY_AND_ASSIGN(CondVar);
  /external/libnfc-nci/src/adaptation/
NfcAdaptation.cpp 215 ** Description: signal the CondVar to release the thread that is waiting
258 ThreadCondVar CondVar;
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/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/chromium_org/third_party/leveldatabase/src/db/
db_impl.h 139 port::CondVar bg_cv_; // Signalled when background work finishes
skiplist_test.cc 333 port::CondVar state_cv_;
db_bench.cc 271 port::CondVar cv;
db_impl.cc 46 port::CondVar cv;
    [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp     [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 442 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar,
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) {
    [all...]
TreeTransform.h     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 3618 milliseconds