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 133 // During a TimedWait, we need a way to make sure that an auto-reset
158 DCHECK(result) << "TimedWait() should never fail with infinite timeout";
161 bool WaitableEvent::TimedWait(const TimeDelta& wait_delta) {
223 sw.cv()->TimedWait(max_wait);
310 // behaviour of |Wait| and |TimedWait|.
  /art/runtime/base/
mutex.cc     [all...]
  /art/test/004-ThreadStress/src-art/
Main.java 54 // -timedwait:X ...... frequency of TimedWait (double)
214 private final static class TimedWait extends Operation {
219 public TimedWait(Object lock) {
326 frequencyMap.put(new TimedWait(lock), 0.05); // 10/200
346 frequencyMap.put(new TimedWait(lock), 0.2); // 40/200
390 } else if (split[0].equals("-timedwait")) {
391 op = new TimedWait(lock);
    [all...]

Completed in 105 milliseconds