Searched defs:cond_ (Results 1 - 3 of 3) sorted by relevance

/art/openjdkjvmti/
H A Dti_monitor.cc137 cond_.wait(lk);
144 cond_.wait_for(lk, std::chrono::milliseconds(timeout_in_ms));
150 return Notify(self, [&]() { cond_.notify_one(); });
154 return Notify(self, [&]() { cond_.notify_all(); });
211 std::condition_variable cond_; variable
/art/runtime/base/
H A Dmutex.h503 pthread_cond_t cond_; member in class:art::ConditionVariable
/art/dex2oat/
H A Ddex2oat.cc509 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_init, (&cond_, &condattr), reason);
520 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_signal, (&cond_), reason);
525 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_destroy, (&cond_), reason);
584 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_, &timeout_ts));
599 pthread_cond_t cond_; member in class:art::WatchDog

Completed in 64 milliseconds