OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:incoming_queue_
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/base/message_loop/
message_loop_proxy_impl.cc
17
:
incoming_queue_
(incoming_queue),
26
return
incoming_queue_
->AddToIncomingQueue(from_here, task, delay, true);
34
return
incoming_queue_
->AddToIncomingQueue(from_here, task, delay, false);
incoming_task_queue.cc
56
return
incoming_queue_
.empty();
72
if (!
incoming_queue_
.empty())
73
incoming_queue_
.Swap(work_queue); // Constant time
75
DCHECK(
incoming_queue_
.empty());
158
bool was_empty =
incoming_queue_
.empty();
159
incoming_queue_
.push(*pending_task);
message_loop_proxy_impl.h
42
scoped_refptr<IncomingTaskQueue>
incoming_queue_
;
member in class:base::internal::MessageLoopProxyImpl
incoming_task_queue.h
59
// Loads tasks from the |
incoming_queue_
| into |*work_queue|. Must be called
73
// Adds a task to |
incoming_queue_
|. The caller retains ownership of
83
// The lock that protects access to |
incoming_queue_
|, |message_loop_| and
90
TaskQueue
incoming_queue_
;
member in class:base::internal::IncomingTaskQueue
/external/chromium_org/remoting/base/
plugin_thread_task_runner.h
104
base::TaskQueue
incoming_queue_
;
member in class:remoting::PluginThreadTaskRunner
plugin_thread_task_runner.cc
109
if (
incoming_queue_
.empty()) {
113
incoming_queue_
.push(pending_task);
181
incoming_queue_
.Swap(&work_queue);
/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 71 milliseconds