HomeSort by relevance Sort by last modified time
    Searched refs:PostTask (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /external/webrtc/webrtc/modules/utility/include/mock/
mock_process_thread.h 25 MOCK_METHOD1(PostTask, void(ProcessTask* task));
32 void PostTask(rtc::scoped_ptr<ProcessTask> task) override {
33 PostTask(task.get());
  /external/libchrome/base/
task_runner.cc 23 bool PostTask(const tracked_objects::Location& from_here,
35 bool PostTaskAndReplyTaskRunner::PostTask(
38 return destination_->PostTask(from_here, task);
43 bool TaskRunner::PostTask(const tracked_objects::Location& from_here,
task_runner.h 67 bool PostTask(const tracked_objects::Location& from_here,
70 // Like PostTask, but tries to run the posted task only after
74 // to have PostDelayedTask behave the same as PostTask.
  /external/libchrome/base/threading/
post_task_and_reply_impl.h 17 // Inherit from this in a class that implements PostTask appropriately
37 virtual bool PostTask(const tracked_objects::Location& from_here,
worker_pool.h 36 static bool PostTask(const tracked_objects::Location& from_here,
41 // like you can for PostTask above.
worker_pool_unittest.cc 71 TEST_F(WorkerPoolTest, PostTask) {
75 WorkerPool::PostTask(FROM_HERE,
79 WorkerPool::PostTask(FROM_HERE,
worker_pool_posix_unittest.cc 54 // PostTask() calls get invoked.
159 pool_->PostTask(FROM_HERE, CreateNewIncrementingTaskCallback());
170 pool_->PostTask(FROM_HERE, CreateNewIncrementingTaskCallback());
175 pool_->PostTask(FROM_HERE, CreateNewBlockingIncrementingTaskCallback());
176 pool_->PostTask(FROM_HERE, CreateNewBlockingIncrementingTaskCallback());
189 pool_->PostTask(FROM_HERE, CreateNewBlockingIncrementingTaskCallback());
190 pool_->PostTask(FROM_HERE, CreateNewBlockingIncrementingTaskCallback());
205 pool_->PostTask(FROM_HERE, CreateNewIncrementingTaskCallback());
211 pool_->PostTask(FROM_HERE, CreateNewBlockingIncrementingTaskCallback());
212 pool_->PostTask(FROM_HERE, CreateNewBlockingIncrementingTaskCallback())
    [all...]
worker_pool_posix.cc 38 void PostTask(const tracked_objects::Location& from_here,
54 void WorkerPoolImpl::PostTask(const tracked_objects::Location& from_here,
57 pool_->PostTask(from_here, task);
109 bool WorkerPool::PostTask(const tracked_objects::Location& from_here,
112 g_lazy_worker_pool.Pointer()->PostTask(from_here, task, task_is_slow);
143 void PosixDynamicThreadPool::PostTask(
worker_pool.cc 27 bool PostTask(const tracked_objects::Location& from_here,
29 return WorkerPool::PostTask(from_here, task, task_is_slow_);
89 return WorkerPool::PostTask(from_here, task, tasks_are_slow_);
worker_pool_posix.h 60 void PostTask(const tracked_objects::Location& from_here,
  /system/connectivity/dhcp_client/
event_dispatcher_interface.h 29 virtual bool PostTask(const base::Closure& task) = 0;
message_loop_event_dispatcher.cc 28 bool MessageLoopEventDispatcher::PostTask(const base::Closure& task) {
31 base::MessageLoop::current()->PostTask(FROM_HERE, task);
message_loop_event_dispatcher.h 34 bool PostTask(const base::Closure& task) override;
  /external/libchrome/base/test/
test_io_thread.cc 52 void TestIOThread::PostTask(const tracked_objects::Location& from_here,
54 task_runner()->PostTask(from_here, task);
60 task_runner()->PostTask(from_here,
test_io_thread.h 35 void PostTask(const tracked_objects::Location& from_here,
  /external/webrtc/webrtc/modules/utility/include/
process_thread.h 53 virtual void PostTask(rtc::scoped_ptr<ProcessTask> task) = 0;
  /system/connectivity/apmanager/
event_dispatcher.h 35 virtual bool PostTask(const base::Closure& task);
mock_event_dispatcher.h 31 MOCK_METHOD1(PostTask, bool(const base::Closure& task));
event_dispatcher.cc 39 bool EventDispatcher::PostTask(const base::Closure& task) {
42 base::MessageLoop::current()->PostTask(FROM_HERE, task);
  /external/libchrome/base/message_loop/
message_loop_test.cc 99 MessageLoop::current()->PostTask(FROM_HERE, Bind(
101 MessageLoop::current()->PostTask(FROM_HERE, Bind(
103 MessageLoop::current()->PostTask(FROM_HERE, Bind(
105 MessageLoop::current()->PostTask(FROM_HERE, Bind(
107 MessageLoop::current()->PostTask(FROM_HERE, Bind(
109 MessageLoop::current()->PostTask(FROM_HERE, Bind(
112 MessageLoop::current()->PostTask(
213 loop.PostTask(FROM_HERE, Bind(&SlowFunc, kPause, &num_tasks));
243 loop.PostTask(FROM_HERE,
297 // Closure objects send to MessageLoop::PostTask(). It is awkward usage since w
    [all...]
message_pump_glib_unittest.cc 155 MessageLoop::current()->PostTask(from_here, task);
236 loop()->PostTask(FROM_HERE, Bind(&IncrementInt, &task_count));
240 loop()->PostTask(
313 MessageLoop::current()->PostTask(
364 loop()->PostTask(
366 loop()->PostTask(
384 MessageLoop::current()->PostTask(FROM_HERE, Bind(&DoNothing));
385 MessageLoop::current()->PostTask(FROM_HERE, Bind(&DoNothing));
397 loop()->PostTask(
450 MessageLoop::current()->PostTask(
    [all...]
  /external/libchrome/base/task/
cancelable_task_tracker_unittest.cc 87 ignore_result(task_tracker_.PostTask(worker_thread.task_runner().get(),
111 CancelableTaskTracker::TaskId task_id = task_tracker_.PostTask(
195 other_thread.task_runner()->PostTask(
202 other_thread.task_runner()->PostTask(
215 ignore_result(task_tracker_.PostTask(
250 ignore_result(task_tracker.PostTask(test_task_runner.get(),
279 ignore_result(task_tracker_.PostTask(
367 ignore_result(task_tracker->PostTask(
377 bad_thread.task_runner()->PostTask(
394 CancelableTaskTracker::TaskId task_id = task_tracker_.PostTask(
    [all...]
  /system/bt/vendor_libs/test_vendor_lib/include/
vendor_manager.h 73 bool PostTask(const base::Closure& task);
  /system/connectivity/shill/
mock_event_dispatcher.h 34 MOCK_METHOD1(PostTask, void(const base::Closure& task));
  /external/libbrillo/brillo/message_loops/
message_loop.h 62 TaskId PostTask(const base::Closure& task) {
65 TaskId PostTask(const tracked_objects::Location& from_here,

Completed in 2533 milliseconds

1 2 3 4 5 6 7