HomeSort by relevance Sort by last modified time
    Searched defs:TimedWait (Results 1 - 4 of 4) sorted by null

  /external/chromium/base/synchronization/
condition_variable_posix.cc 42 void ConditionVariable::TimedWait(const TimeDelta& max_time) {
waitable_event_win.cc 46 return TimedWait(TimeDelta::FromMilliseconds(0));
57 bool WaitableEvent::TimedWait(const TimeDelta& max_time) {
condition_variable_win.cc 29 // There are threads of execution still in this->TimedWait() and yet the
49 TimedWait(TimeDelta::FromMilliseconds(INFINITE));
52 void ConditionVariable::TimedWait(const TimeDelta& max_time) {
waitable_event_posix.cc 129 // During a TimedWait, we need a way to make sure that an auto-reset
153 return TimedWait(TimeDelta::FromSeconds(-1));
156 bool WaitableEvent::TimedWait(const TimeDelta& max_time) {
204 sw.cv()->TimedWait(max_wait);

Completed in 186 milliseconds