Home
last modified time | relevance | path

Searched refs:current_time_ (Results 1 – 11 of 11) 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.cc29 update_handler_(update, current_time_); in HandleStateUpdate()
44 current_time_ = to_time; in ProcessUntil()
51 current_time_ = last_process_; in ProcessUntil()
53 msg.at_time = current_time_; in ProcessUntil()
56 current_time_ = to_time; in ProcessUntil()
Dlog_simulation.h55 Timestamp current_time_ = Timestamp::MinusInfinity();
/external/webrtc/test/time_controller/
Dsimulated_time_controller.cc41 : thread_id_(rtc::CurrentThreadId()), current_time_(start_time) {} in SimulatedTimeControllerImpl()
131 return current_time_; in CurrentTime()
149 RTC_DCHECK_GE(target_time, current_time_); in AdvanceTime()
150 current_time_ = target_time; in AdvanceTime()
Dsimulated_time_controller.h93 Timestamp current_time_ RTC_GUARDED_BY(time_lock_);
/external/webrtc/modules/congestion_controller/goog_cc/
Dgoog_cc_network_control_unittest.cc129 : current_time_(Timestamp::Millis(123456)), factory_() {} in GoogCcNetworkControllerTest()
157 config.constraints.at_time = current_time_; in InitialConfig()
169 interval.at_time = current_time_; in DefaultInterval()
174 report.receive_time = current_time_; in CreateBitrateReport()
196 route_change.at_time = current_time_; in CreateRouteChange()
197 route_change.constraints.at_time = current_time_; in CreateRouteChange()
205 current_time_ += TimeDelta::Millis(timedelta_ms); in AdvanceTimeMilliseconds()
215 int64_t start_time_ms = current_time_.ms(); in PacketTransmissionAndFeedbackBlock()
216 while (current_time_.ms() - start_time_ms < runtime_ms) { in PacketTransmissionAndFeedbackBlock()
219 CreateResult(current_time_.ms() + delay_buildup, current_time_.ms(), in PacketTransmissionAndFeedbackBlock()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Dheap_simulator.cc569 buffer, BufferInterval{buffer, size, current_time_, -1, {}, true}); in Alloc()
571 ++current_time_; in Alloc()
585 buffer, BufferInterval{buffer, size, current_time_, -1, {}, false}); in ShareWith()
587 ++current_time_; in ShareWith()
622 buffer_interval.end = current_time_; in Free()
623 ++current_time_; in Free()
Dheap_simulator.h450 int64 current_time_ = 0; variable