HomeSort by relevance Sort by last modified time
    Searched refs:waiting_event (Results 1 - 2 of 2) sorted by null

  /external/chromium/base/synchronization/
condition_variable_win.cc 53 Event* waiting_event; local
58 waiting_event = GetEventForWaiting();
59 handle = waiting_event->handle();
68 RecycleEvent(waiting_event);
314 WaitForSingleObject(waiting_event, max_time.InMilliseconds());
317 leaving the waiting_event reset (unsignaled) and still in the
324 d) The Signal() method (step c) calls SetEvent() on waiting_event (step b).
329 f) When that waiting_event (step b) is reused, it will immediately
434 waiting_event must be selected prior to the WaitForSingleObject(), and then it
  /external/chromium_org/base/synchronization/
condition_variable_win.cc 246 Event* waiting_event; local
251 waiting_event = GetEventForWaiting();
252 handle = waiting_event->handle();
261 RecycleEvent(waiting_event);
507 WaitForSingleObject(waiting_event, max_time.InMilliseconds());
510 leaving the waiting_event reset (unsignaled) and still in the
517 d) The Signal() method (step c) calls SetEvent() on waiting_event (step b).
522 f) When that waiting_event (step b) is reused, it will immediately
627 waiting_event must be selected prior to the WaitForSingleObject(), and then it

Completed in 520 milliseconds