Home
last modified time | relevance | path

Searched refs:current_time_ (Results 1 – 10 of 10) sorted by relevance

/external/libbrillo/brillo/message_loops/
Dfake_message_loop.cc24 current_time_ = test_clock_->Now(); in PostDelayedTask()
29 fire_order_.push(std::make_pair(current_time_ + delay, current_id)); in PostDelayedTask()
31 << " to run at " << current_time_ + delay in PostDelayedTask()
46 current_time_ = test_clock_->Now(); in RunOnce()
49 (may_block || fire_order_.top().first <= current_time_)) { in RunOnce()
59 if (current_time_ < task_ref.first) { in RunOnce()
60 current_time_ = task_ref.first; in RunOnce()
62 test_clock_->SetNow(current_time_); in RunOnce()
70 << " at time " << current_time_ << " from this location."; in RunOnce()
Dfake_message_loop.h70 base::Time current_time_ = base::Time::FromDoubleT(1246996800.); variable
/external/tensorflow/tensorflow/core/kernels/batching_util/
Dfake_clock_env.cc29 current_time_ += micros; in AdvanceByMicroseconds()
31 if (current_time_ >= it->wake_time) { in AdvanceByMicroseconds()
71 return current_time_; in NowMicros()
83 sleeping_threads_.push_back({current_time_ + micros, &wake_notification}); in SleepForMicroseconds()
Dfake_clock_env.h61 uint64 current_time_ TF_GUARDED_BY(mu_) = 0;
/external/webrtc/rtc_tools/rtc_event_log_visualizer/
Dlog_simulation.cc30 update_handler_(update, current_time_); in HandleStateUpdate()
45 current_time_ = to_time; in ProcessUntil()
52 current_time_ = last_process_; in ProcessUntil()
54 msg.at_time = current_time_; in ProcessUntil()
57 current_time_ = to_time; in ProcessUntil()
Dlog_simulation.h55 Timestamp current_time_ = Timestamp::MinusInfinity();
/external/webrtc/test/time_controller/
Dsimulated_time_controller.cc40 : thread_id_(rtc::CurrentThreadId()), current_time_(start_time) {} in SimulatedTimeControllerImpl()
121 return current_time_; in CurrentTime()
139 RTC_DCHECK_GE(target_time, current_time_); in AdvanceTime()
140 current_time_ = target_time; in AdvanceTime()
Dsimulated_time_controller.h89 Timestamp current_time_ RTC_GUARDED_BY(time_lock_);
/external/tensorflow/tensorflow/compiler/xla/service/
Dheap_simulator.cc555 buffer, BufferInterval{buffer, size, current_time_, -1, {}, true}); in Alloc()
557 ++current_time_; in Alloc()
571 buffer, BufferInterval{buffer, size, current_time_, -1, {}, false}); in ShareWith()
573 ++current_time_; in ShareWith()
609 buffer_interval.end = current_time_; in Free()
610 ++current_time_; in Free()
Dheap_simulator.h447 int64_t current_time_ = 0; variable