Home | History | Annotate | Download | only in base

Lines Matching refs:ConditionVariable

756 ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
766 ConditionVariable::~ConditionVariable() {
772 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
789 void ConditionVariable::Broadcast(Thread* self) {
817 void ConditionVariable::Signal(Thread* self) {
834 void ConditionVariable::Wait(Thread* self) {
839 void ConditionVariable::WaitHoldingLocks(Thread* self) {
871 void ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
889 // A signal or ConditionVariable::Signal/Broadcast has come in.