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

  /external/chromium/base/
message_loop.cc 302 // We only check |incoming_queue_|, since we don't want to lock |work_queue_|.
304 DCHECK(incoming_queue_.empty());
408 // We can improve performance of our loading tasks from incoming_queue_ to
418 if (incoming_queue_.empty())
420 incoming_queue_.Swap(&work_queue_); // Constant time
421 DCHECK(incoming_queue_.empty());
520 bool was_empty = incoming_queue_.empty();
521 incoming_queue_.push(pending_task);
527 // Since the incoming_queue_ may contain a task that destroys this message
message_loop.h 419 // Load tasks from the incoming_queue_ into work_queue_ if the latter is
482 TaskQueue incoming_queue_; member in class:MessageLoop
483 // Protect access to incoming_queue_.

Completed in 112 milliseconds