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

  /external/chromium_org/base/message_loop/
message_pump.h 26 // pump would otherwise call DoDelayedWork. Returns true to indicate that
27 // work was done. DoDelayedWork will still be called if DoWork returns
34 // if DoDelayedWork returns true. Upon return |next_delayed_work_time|
35 // indicates the time when DoDelayedWork should be called again. If
39 virtual bool DoDelayedWork(TimeTicks* next_delayed_work_time) = 0;
69 // did_work |= delegate_->DoDelayedWork(&next_time);
92 // and DoDelayedWork methods. This helps ensure that none of these work
104 // the callouts (DoWork and DoDelayedWork) MUST still be provided even in
121 // Schedule a DoDelayedWork callback to happen at the specified time,
122 // cancelling any pending DoDelayedWork callback. This method may only b
    [all...]
message_pump_default.cc 36 did_work |= delegate->DoDelayedWork(&delayed_work_time_);
59 // need to call DoDelayedWork now.
message_pump_glib.cc 82 // we run DoWork and/or DoDelayedWork. That part will also run in the other
84 // - We also run DoWork, DoDelayedWork, and possibly DoIdleWork in the main
278 state_->delegate->DoDelayedWork(&delayed_work_time_);
318 state_->delegate->DoDelayedWork(&delayed_work_time_);
message_pump_android.cc 32 // we call DoWork() / DoDelayedWork().
60 did_work |= delegate->DoDelayedWork(&next_delayed_work_time);
message_pump_win.cc 207 state_->delegate->DoDelayedWork(&delayed_work_time_);
314 state_->delegate->DoDelayedWork(&delayed_work_time_);
488 state_->delegate->DoDelayedWork(&delayed_work_time_);
message_loop.h 449 virtual bool DoDelayedWork(TimeTicks* next_delayed_work_time) OVERRIDE;
message_pump_libevent.cc 242 did_work |= delegate->DoDelayedWork(&delayed_work_time_);
273 // need to call DoDelayedWork now.
message_loop.cc 575 bool MessageLoop::DoDelayedWork(TimeTicks* next_delayed_work_time) {
  /external/chromium_org/mojo/public/cpp/utility/
run_loop.h 98 bool DoDelayedWork();
  /external/chromium_org/base/test/
test_support_android.cc 105 g_state->delegate->DoDelayedWork(&delayed_work_time);
  /external/chromium_org/content/public/test/
nested_message_pump_android.cc 45 // The time at which we should call DoDelayedWork.
77 did_work |= state_->delegate->DoDelayedWork(&state_->delayed_work_time);
111 // need to call DoDelayedWork now.
  /external/chromium_org/mojo/public/cpp/utility/lib/
run_loop.cc 109 bool did_work = DoDelayedWork();
121 bool RunLoop::DoDelayedWork() {
  /external/chromium_org/mojo/common/
message_pump_mojo.cc 155 more_work_is_plausible |= delegate->DoDelayedWork(

Completed in 3205 milliseconds