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

  /external/chromium/base/
message_pump.h 23 // pump would otherwise call DoDelayedWork. Returns true to indicate that
24 // work was done. DoDelayedWork will not be called if DoWork returns true.
30 // if DoDelayedWork returns true. Upon return |next_delayed_work_time|
31 // indicates the time when DoDelayedWork should be called again. If
35 virtual bool DoDelayedWork(Time* next_delayed_work_time) = 0;
62 // did_work |= delegate_->DoDelayedWork();
85 // and DoDelayedWork methods. This helps ensure that neither work queue
97 // the callouts (DoWork and DoDelayedWork) MUST still be provided even in
114 // Schedule a DoDelayedWork callback to happen at the specified time,
115 // cancelling any pending DoDelayedWork callback. This method may only b
    [all...]
message_pump_default.cc 27 did_work |= delegate->DoDelayedWork(&delayed_work_time_);
49 // need to call DoDelayedWork now.
message_pump_win.cc 214 state_->delegate->DoDelayedWork(&delayed_work_time_);
317 state_->delegate->DoDelayedWork(&delayed_work_time_);
458 state_->delegate->DoDelayedWork(&delayed_work_time_);
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
204 state_->delegate->DoDelayedWork(&delayed_work_time_);
275 state_->delegate->DoDelayedWork(&delayed_work_time_);
message_loop.h 376 virtual bool DoDelayedWork(base::Time* next_delayed_work_time);
message_pump_libevent.cc 245 did_work |= delegate->DoDelayedWork(&delayed_work_time_);
276 // need to call DoDelayedWork now.
message_loop.cc 445 bool MessageLoop::DoDelayedWork(Time* next_delayed_work_time) {

Completed in 8776 milliseconds