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

  /external/chromium/base/
message_loop.cc 352 // work_queue_ by waiting until the last minute (work_queue_ is empty) to
355 if (!work_queue_.empty())
363 incoming_queue_.Swap(&work_queue_); // Constant time
369 bool did_work = !work_queue_.empty();
370 while (!work_queue_.empty()) {
371 PendingTask pending_task = work_queue_.front();
372 work_queue_.pop();
422 if (work_queue_.empty())
427 PendingTask pending_task = work_queue_.front()
    [all...]
message_loop.h 339 // Run a work_queue_ task or new_task, and delete it (if it was processed by
345 // appended to the list work_queue_. Such re-entrancy generally happens when
360 // Load tasks from the incoming_queue_ into work_queue_ if the latter is
395 TaskQueue work_queue_; member in class:MessageLoop
421 // have not yet been sorted out into items for our work_queue_ vs items that

Completed in 29 milliseconds