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

  /external/libchrome/base/task/sequence_manager/
real_time_domain.cc 26 Optional<TimeTicks> next_run_time = NextScheduledRunTime(); local
27 if (!next_run_time)
31 if (now >= next_run_time) {
36 TimeDelta delay = *next_run_time - now;
thread_controller_with_message_pump_impl.h 50 bool DoDelayedWork(TimeTicks* next_run_time) override;
thread_controller_with_message_pump_impl.cc 158 TimeTicks* next_run_time) {
  /external/libchrome/base/message_loop/
message_loop.cc 495 if (!scheduled_wakeup_.next_run_time.is_null()) {
536 DCHECK(scheduled_wakeup_.next_run_time.is_null());
545 // under |next_run_time > recent_time_|. This condition covers the special
547 if (!scheduled_wakeup_.next_run_time.is_null()) {
563 TimeTicks next_run_time = local
566 if (next_run_time > recent_time_) {
568 if (next_run_time > recent_time_) {
569 *next_delayed_work_time = next_run_time;
575 if (!scheduled_wakeup_.next_run_time.is_null()) {
583 DCHECK_GE(next_run_time, scheduled_wakeup_.next_run_time)
    [all...]
message_loop.h 293 TimeTicks next_run_time; member in struct:base::MessageLoop::ScheduledWakeup
294 // The delta until |next_run_time| when this loop became idle.

Completed in 78 milliseconds