Searched defs:cv_event (Results 1 - 1 of 1) sorted by relevance

/external/chromium/base/synchronization/
H A Dcondition_variable_win.cc74 // a cv_event internally allocated for them) before Broadcast() was called.
92 // cv_event). For better performance we signal the thread that went to sleep
108 // GetEventForWaiting() provides a unique cv_event for any caller that needs to
109 // wait. This means that (worst case) we may over time create as many cv_event
114 Event* cv_event; local
117 cv_event = new Event();
118 cv_event->InitListElement();
120 CHECK(cv_event->handle());
122 cv_event = recycling_list_.PopFront();
125 waiting_list_.PushBack(cv_event);
180 Event* cv_event = PopFront(); local
[all...]

Completed in 48 milliseconds