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

  /external/libchrome/base/synchronization/
condition_variable_posix.cc 76 void ConditionVariable::TimedWait(const TimeDelta& max_time) {
waitable_event_posix.cc 131 // During a TimedWait, we need a way to make sure that an auto-reset
155 bool result = TimedWait(TimeDelta::FromSeconds(-1));
156 DCHECK(result) << "TimedWait() should never fail with infinite timeout";
159 bool WaitableEvent::TimedWait(const TimeDelta& max_time) {
213 sw.cv()->TimedWait(max_wait);
299 // behaviour of |Wait| and |TimedWait|.
  /art/test/004-ThreadStress/src/
Main.java 45 // -timedwait:X .... frequency of TimedWait
184 private final static class TimedWait extends Operation {
189 public TimedWait(Object lock) {
252 frequencyMap.put(new TimedWait(lock), 0.05); // 10/200
261 frequencyMap.put(new TimedWait(lock), 0.2);
305 } else if (split[0].equals("-timedwait")) {
306 op = new TimedWait(lock);
  /art/runtime/base/
mutex.cc     [all...]

Completed in 338 milliseconds