Searched defs:from_here (Results 1 - 25 of 121) sorted by path

12345

/external/chromium_org/ash/system/chromeos/session/
H A Dlogout_confirmation_controller_unittest.cc33 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
37 const tracked_objects::Location& from_here,
90 const tracked_objects::Location& from_here,
98 const tracked_objects::Location& from_here,
89 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
97 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
/external/chromium_org/base/
H A Ddeferred_sequenced_task_runner.cc29 const tracked_objects::Location& from_here,
35 return target_task_runner_->PostDelayedTask(from_here, task, delay);
38 QueueDeferredTask(from_here, task, delay, false /* is_non_nestable */);
47 const tracked_objects::Location& from_here,
53 return target_task_runner_->PostNonNestableDelayedTask(from_here,
57 QueueDeferredTask(from_here, task, delay, true /* is_non_nestable */);
62 const tracked_objects::Location& from_here,
67 deferred_task.posted_from = from_here;
28 PostDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
46 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
61 QueueDeferredTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay, bool is_non_nestable) argument
H A Dsequenced_task_runner.cc12 const tracked_objects::Location& from_here,
14 return PostNonNestableDelayedTask(from_here, task, base::TimeDelta());
18 const tracked_objects::Location& from_here,
21 return PostNonNestableTask(from_here, Bind(deleter, object));
25 const tracked_objects::Location& from_here,
28 return PostNonNestableTask(from_here, Bind(releaser, object));
11 PostNonNestableTask( const tracked_objects::Location& from_here, const Closure& task) argument
17 DeleteSoonInternal( const tracked_objects::Location& from_here, void(*deleter)(const void*), const void* object) argument
24 ReleaseSoonInternal( const tracked_objects::Location& from_here, void(*releaser)(const void*), const void* object) argument
H A Dsequenced_task_runner.h111 bool PostNonNestableTask(const tracked_objects::Location& from_here,
115 const tracked_objects::Location& from_here,
123 bool DeleteSoon(const tracked_objects::Location& from_here, argument
127 this, from_here, object);
134 bool ReleaseSoon(const tracked_objects::Location& from_here, argument
138 this, from_here, object);
148 bool DeleteSoonInternal(const tracked_objects::Location& from_here,
152 bool ReleaseSoonInternal(const tracked_objects::Location& from_here,
H A Dsequenced_task_runner_helpers.h83 const tracked_objects::Location& from_here,
86 from_here, &DeleteHelper<T>::DoDelete, object);
99 const tracked_objects::Location& from_here,
102 from_here, &ReleaseHelper<T>::DoRelease, object);
81 DeleteViaSequencedTaskRunner( SequencedTaskRunnerType* sequenced_task_runner, const tracked_objects::Location& from_here, const T* object) argument
97 ReleaseViaSequencedTaskRunner( SequencedTaskRunnerType* sequenced_task_runner, const tracked_objects::Location& from_here, const T* object) argument
H A Dtask_runner.cc23 virtual bool PostTask(const tracked_objects::Location& from_here,
36 const tracked_objects::Location& from_here,
38 return destination_->PostTask(from_here, task);
43 bool TaskRunner::PostTask(const tracked_objects::Location& from_here, argument
45 return PostDelayedTask(from_here, task, base::TimeDelta());
49 const tracked_objects::Location& from_here,
53 from_here, task, reply);
35 PostTask( const tracked_objects::Location& from_here, const Closure& task) argument
48 PostTaskAndReply( const tracked_objects::Location& from_here, const Closure& task, const Closure& reply) argument
H A Dtask_runner_util.h57 const tracked_objects::Location& from_here,
62 from_here,
55 PostTaskAndReplyWithResult( TaskRunner* task_runner, const tracked_objects::Location& from_here, const Callback<TaskReturnType(void)>& task, const Callback<void(ReplyArgType)>& reply) argument
/external/chromium_org/base/mac/
H A Dlibdispatch_task_runner.cc20 const tracked_objects::Location& from_here,
50 const tracked_objects::Location& from_here,
53 return PostDelayedTask(from_here, task, delay);
19 PostDelayedTask( const tracked_objects::Location& from_here, const Closure& task, base::TimeDelta delay) argument
49 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const Closure& task, base::TimeDelta delay) argument
/external/chromium_org/base/message_loop/
H A Dincoming_task_queue.cc22 const tracked_objects::Location& from_here,
28 from_here, task, CalculateDelayedRuntime(delay), nestable);
21 AddToIncomingQueue( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay, bool nestable) argument
H A Dmessage_loop.cc277 const tracked_objects::Location& from_here,
279 DCHECK(!task.is_null()) << from_here.ToString();
280 incoming_task_queue_->AddToIncomingQueue(from_here, task, TimeDelta(), true);
284 const tracked_objects::Location& from_here,
287 DCHECK(!task.is_null()) << from_here.ToString();
288 incoming_task_queue_->AddToIncomingQueue(from_here, task, delay, true);
292 const tracked_objects::Location& from_here,
294 DCHECK(!task.is_null()) << from_here.ToString();
295 incoming_task_queue_->AddToIncomingQueue(from_here, task, TimeDelta(), false);
299 const tracked_objects::Location& from_here,
276 PostTask( const tracked_objects::Location& from_here, const Closure& task) argument
283 PostDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
291 PostNonNestableTask( const tracked_objects::Location& from_here, const Closure& task) argument
298 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
628 DeleteSoonInternal(const tracked_objects::Location& from_here, void(*deleter)(const void*), const void* object) argument
634 ReleaseSoonInternal( const tracked_objects::Location& from_here, void(*releaser)(const void*), const void* object) argument
[all...]
H A Dmessage_loop.h172 // PostTask(from_here, task) is equivalent to
173 // PostDelayedTask(from_here, task, 0).
177 void PostTask(const tracked_objects::Location& from_here,
180 void PostDelayedTask(const tracked_objects::Location& from_here,
184 void PostNonNestableTask(const tracked_objects::Location& from_here,
187 void PostNonNestableDelayedTask(const tracked_objects::Location& from_here,
201 void DeleteSoon(const tracked_objects::Location& from_here, const T* object) { argument
203 this, from_here, object);
229 void ReleaseSoon(const tracked_objects::Location& from_here, argument
232 this, from_here, objec
[all...]
H A Dmessage_loop_proxy_impl.cc22 const tracked_objects::Location& from_here,
25 DCHECK(!task.is_null()) << from_here.ToString();
26 return incoming_queue_->AddToIncomingQueue(from_here, task, delay, true);
30 const tracked_objects::Location& from_here,
33 DCHECK(!task.is_null()) << from_here.ToString();
34 return incoming_queue_->AddToIncomingQueue(from_here, task, delay, false);
21 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
29 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
H A Dmessage_pump_glib_unittest.cc153 void PostMessageLoopTask(const tracked_objects::Location& from_here, argument
155 MessageLoop::current()->PostTask(from_here, task);
/external/chromium_org/base/task/
H A Dcancelable_task_tracker.cc73 const tracked_objects::Location& from_here,
77 return PostTaskAndReply(task_runner, from_here, task, Bind(&base::DoNothing));
82 const tracked_objects::Location& from_here,
99 task_runner->PostTaskAndReply(from_here,
71 PostTask( TaskRunner* task_runner, const tracked_objects::Location& from_here, const Closure& task) argument
80 PostTaskAndReply( TaskRunner* task_runner, const tracked_objects::Location& from_here, const Closure& task, const Closure& reply) argument
H A Dcancelable_task_tracker.h70 const tracked_objects::Location& from_here,
74 const tracked_objects::Location& from_here,
81 const tracked_objects::Location& from_here,
87 from_here,
79 PostTaskAndReplyWithResult( base::TaskRunner* task_runner, const tracked_objects::Location& from_here, const base::Callback<TaskReturnType(void)>& task, const base::Callback<void(ReplyArgType)>& reply) argument
/external/chromium_org/base/test/
H A Dnull_task_runner.cc14 const tracked_objects::Location& from_here,
21 const tracked_objects::Location& from_here,
13 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
20 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
H A Dtest_io_thread.cc52 void TestIOThread::PostTask(const tracked_objects::Location& from_here, argument
54 task_runner()->PostTask(from_here, task);
57 void TestIOThread::PostTaskAndWait(const tracked_objects::Location& from_here, argument
60 task_runner()->PostTask(from_here,
H A Dtest_simple_task_runner.cc18 const tracked_objects::Location& from_here,
23 TestPendingTask(from_here, task, TimeTicks(), delay,
29 const tracked_objects::Location& from_here,
34 TestPendingTask(from_here, task, TimeTicks(), delay,
17 PostDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
28 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
/external/chromium_org/base/threading/
H A Dpost_task_and_reply_impl.cc27 PostTaskAndReplyRelay(const tracked_objects::Location& from_here, argument
29 : from_here_(from_here),
75 const tracked_objects::Location& from_here,
79 new PostTaskAndReplyRelay(from_here, task, reply);
80 if (!PostTask(from_here, Bind(&PostTaskAndReplyRelay::Run,
74 PostTaskAndReply( const tracked_objects::Location& from_here, const Closure& task, const Closure& reply) argument
H A Dsequenced_worker_pool.cc54 explicit SequencedTask(const tracked_objects::Location& from_here) argument
55 : base::TrackingInfo(from_here, TimeTicks()),
101 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
127 const tracked_objects::Location& from_here,
132 from_here, task, shutdown_behavior_);
134 return pool_->PostDelayedWorkerTask(from_here, task, delay);
154 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
161 const tracked_objects::Location& from_here,
191 const tracked_objects::Location& from_here,
196 token_, from_here, tas
126 PostDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
190 PostDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
205 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
566 PostTask( const std::string* optional_token_name, SequenceToken sequence_token, WorkerShutdown shutdown_behavior, const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
1199 PostWorkerTask( const tracked_objects::Location& from_here, const Closure& task) argument
1206 PostDelayedWorkerTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
1216 PostWorkerTaskWithShutdownBehavior( const tracked_objects::Location& from_here, const Closure& task, WorkerShutdown shutdown_behavior) argument
1224 PostSequencedWorkerTask( SequenceToken sequence_token, const tracked_objects::Location& from_here, const Closure& task) argument
1232 PostDelayedSequencedWorkerTask( SequenceToken sequence_token, const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
1243 PostNamedSequencedWorkerTask( const std::string& token_name, const tracked_objects::Location& from_here, const Closure& task) argument
1252 PostSequencedWorkerTaskWithShutdownBehavior( SequenceToken sequence_token, const tracked_objects::Location& from_here, const Closure& task, WorkerShutdown shutdown_behavior) argument
1261 PostDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
[all...]
H A Dworker_pool.cc26 virtual bool PostTask(const tracked_objects::Location& from_here,
28 return WorkerPool::PostTask(from_here, task, task_is_slow_);
44 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
55 const tracked_objects::Location& from_here,
72 const tracked_objects::Location& from_here,
75 return PostDelayedTaskAssertZeroDelay(from_here, task, delay);
83 const tracked_objects::Location& from_here,
88 return WorkerPool::PostTask(from_here, task, tasks_are_slow_);
104 bool WorkerPool::PostTaskAndReply(const tracked_objects::Location& from_here, argument
115 from_here, tas
71 PostDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
82 PostDelayedTaskAssertZeroDelay( const tracked_objects::Location& from_here, const Closure& task, base::TimeDelta delay) argument
[all...]
H A Dworker_pool_posix.cc43 void PostTask(const tracked_objects::Location& from_here,
59 void WorkerPoolImpl::PostTask(const tracked_objects::Location& from_here, argument
61 pool_->PostTask(from_here, task);
115 bool WorkerPool::PostTask(const tracked_objects::Location& from_here, argument
117 g_lazy_worker_pool.Pointer()->PostTask(from_here, task, task_is_slow);
149 const tracked_objects::Location& from_here,
151 PendingTask pending_task(from_here, task);
148 PostTask( const tracked_objects::Location& from_here, const base::Closure& task) argument
H A Dworker_pool_win.cc65 bool WorkerPool::PostTask(const tracked_objects::Location& from_here, argument
67 PendingTask* pending_task = new PendingTask(from_here, task);
/external/chromium_org/cc/test/
H A Dordered_simple_task_runner.cc97 const tracked_objects::Location& from_here,
102 from_here, task, now_src_->Now(), delay, base::TestPendingTask::NESTABLE);
110 const tracked_objects::Location& from_here,
114 TestOrderablePendingTask pt(from_here,
96 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
109 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
/external/chromium_org/cc/trees/
H A Dblocking_task_runner.cc34 bool BlockingTaskRunner::PostTask(const tracked_objects::Location& from_here, argument
39 return task_runner_->PostTask(from_here, task);

Completed in 334 milliseconds

12345