Searched refs:cond_ (Results 1 - 8 of 8) sorted by relevance

/art/runtime/
H A Dsignal_catcher.h55 ConditionVariable cond_ GUARDED_BY(lock_);
H A Dsignal_catcher.cc65 cond_("SignalCatcher::cond_", lock_),
75 cond_.Wait(self);
196 signal_catcher->cond_.Broadcast(self);
H A Ddebugger.h55 cond_("a DebugInvokeReq condition variable", lock_) {
81 ConditionVariable cond_ GUARDED_BY(lock_);
H A Ddebugger.cc2769 req->cond_.Wait(self);
/art/runtime/base/
H A Dmutex.cc762 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, NULL));
778 int rc = pthread_cond_destroy(&cond_);
813 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
830 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
866 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
911 int rc = TEMP_FAILURE_RETRY(TIMEDWAIT(&cond_, &guard_.mutex_, &ts));
H A Dmutex.h347 pthread_cond_t cond_; member in class:art::ConditionVariable
/art/dex2oat/
H A Ddex2oat.cc462 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_init, (&cond_, NULL), reason);
474 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_signal, (&cond_), reason);
479 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_destroy, (&cond_), reason);
524 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_,
559 pthread_cond_t cond_; member in class:art::WatchDog
/art/runtime/jdwp/
H A Djdwp_event.cc543 pReq->cond_.Signal(self);

Completed in 212 milliseconds