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

1 2 3 4 5 6 7

  /system/connectivity/dhcp_client/
event_dispatcher_interface.h 30 virtual bool PostDelayedTask(const base::Closure& task,
message_loop_event_dispatcher.cc 35 bool MessageLoopEventDispatcher::PostDelayedTask(const base::Closure& task,
39 base::MessageLoop::current()->PostDelayedTask(
message_loop_event_dispatcher.h 35 bool PostDelayedTask(const base::Closure& task,
  /external/libbrillo/brillo/message_loops/
message_loop.h 52 virtual TaskId PostDelayedTask(const tracked_objects::Location& from_here,
56 TaskId PostDelayedTask(const base::Closure& task, base::TimeDelta delay) {
57 return PostDelayedTask(tracked_objects::Location(), task, delay);
63 return PostDelayedTask(task, base::TimeDelta());
67 return PostDelayedTask(from_here, task, base::TimeDelta());
fake_message_loop_unittest.cc 48 loop_->PostDelayedTask(Bind([&order]() { order.push_back(1); }),
50 loop_->PostDelayedTask(Bind([&order]() { order.push_back(4); }),
52 loop_->PostDelayedTask(Bind([&order]() { order.push_back(3); }),
54 loop_->PostDelayedTask(Bind([&order]() { order.push_back(2); }),
65 loop_->PostDelayedTask(Bind(&base::DoNothing), TimeDelta::FromSeconds(1));
66 loop_->PostDelayedTask(Bind(&base::DoNothing), TimeDelta::FromSeconds(2));
96 loop_->PostDelayedTask(Bind([this] { this->loop_->BreakLoop(); }),
99 loop_->PostDelayedTask(Bind([this] { this->loop_->BreakLoop(); }),
111 loop_->PostDelayedTask(Bind(&base::DoNothing), TimeDelta::FromSeconds(1));
mock_message_loop.h 35 ON_CALL(*this, PostDelayedTask(::testing::_, ::testing::_, ::testing::_))
42 &FakeMessageLoop::PostDelayedTask)));
60 MOCK_METHOD3(PostDelayedTask,
64 using MessageLoop::PostDelayedTask;
message_loop_utils.cc 17 MessageLoop::TaskId task_id = loop->PostDelayedTask(
glib_message_loop.h 26 TaskId PostDelayedTask(const tracked_objects::Location& from_here,
29 using MessageLoop::PostDelayedTask;
  /external/libweave/include/weave/provider/
task_runner.h 26 virtual void PostDelayedTask(const tracked_objects::Location& from_here,
  /system/connectivity/apmanager/
event_dispatcher.h 36 virtual bool PostDelayedTask(const base::Closure& task,
mock_event_dispatcher.h 32 MOCK_METHOD2(PostDelayedTask, bool(const base::Closure& task,
event_dispatcher.cc 46 bool EventDispatcher::PostDelayedTask(const base::Closure& task,
50 base::MessageLoop::current()->PostDelayedTask(
  /system/connectivity/shill/
connectivity_trial_unittest.cc 145 EXPECT_CALL(dispatcher(), PostDelayedTask(_, kTrialTimeout * 1000));
179 EXPECT_CALL(dispatcher(), PostDelayedTask(_, delay));
188 EXPECT_CALL(dispatcher(), PostDelayedTask(_, 0));
194 EXPECT_CALL(dispatcher(), PostDelayedTask(
235 EXPECT_CALL(dispatcher(), PostDelayedTask(_, 0)).Times(0);
248 EXPECT_CALL(dispatcher(), PostDelayedTask(_, 0));
262 EXPECT_CALL(dispatcher(), PostDelayedTask(_, 0));
276 EXPECT_CALL(dispatcher(), PostDelayedTask(_, 0)).Times(0);
283 EXPECT_CALL(dispatcher(), PostDelayedTask(_, 0)).Times(1);
288 EXPECT_CALL(dispatcher(), PostDelayedTask(_, 10)).Times(1)
    [all...]
mock_event_dispatcher.h 35 MOCK_METHOD2(PostDelayedTask, void(const base::Closure& task,
event_dispatcher.cc 51 void EventDispatcher::PostDelayedTask(const Closure& task, int64_t delay_ms) {
52 base::MessageLoop::current()->PostDelayedTask(
  /external/libweave/src/test/
fake_stream.cc 35 task_runner_->PostDelayedTask(
44 task_runner_->PostDelayedTask(FROM_HERE, base::Bind(callback, size, nullptr),
55 task_runner_->PostDelayedTask(FROM_HERE, base::Bind(callback, nullptr),
  /system/bt/vendor_libs/test_vendor_lib/src/
vendor_manager.cc 125 return PostDelayedTask(task, base::TimeDelta::FromMilliseconds(0));
128 bool VendorManager::PostDelayedTask(const base::Closure& task,
130 return thread_.task_runner()->PostDelayedTask(FROM_HERE, task, delay);
  /external/libchrome/base/mac/
libdispatch_task_runner.h 41 bool PostDelayedTask(const tracked_objects::Location& from_here,
libdispatch_task_runner.cc 21 bool LibDispatchTaskRunner::PostDelayedTask(
55 return PostDelayedTask(from_here, task, delay);
  /external/libchrome/base/message_loop/
message_loop_task_runner.h 33 bool PostDelayedTask(const tracked_objects::Location& from_here,
  /external/libchrome/base/
task_runner.h 66 // Equivalent to PostDelayedTask(from_here, task, 0).
74 // to have PostDelayedTask behave the same as PostTask.
75 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
  /external/libchrome/base/test/
test_simple_task_runner.h 50 bool PostDelayedTask(const tracked_objects::Location& from_here,
  /system/bt/vendor_libs/test_vendor_lib/include/
vendor_manager.h 72 // |PostDelayedTask| with a delay of 0.
76 bool PostDelayedTask(const base::Closure& task, base::TimeDelta delay);
  /external/libweave/examples/provider/
ssl_stream.cc 32 task_runner->PostDelayedTask(FROM_HERE, task,
75 task_runner_->PostDelayedTask(
94 return task_runner_->PostDelayedTask(
109 return task_runner_->PostDelayedTask(
133 task_runner_->PostDelayedTask(
178 task_runner->PostDelayedTask(
188 return task_runner->PostDelayedTask(
202 task_runner->PostDelayedTask(
  /external/libweave/src/privet/
device_delegate.cc 39 void PostDelayedTask(const tracked_objects::Location& from_here,
42 task_runner_->PostDelayedTask(from_here, task, delay);

Completed in 879 milliseconds

1 2 3 4 5 6 7