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

  /external/chromium_org/chrome/browser/sync_file_system/
sync_process_runner.cc 141 base::TimeDelta time_to_next = base::TimeDelta::FromMilliseconds(delay); local
148 if (elapsed < time_to_next) {
149 time_to_next = time_to_next - elapsed;
151 time_to_next = base::TimeDelta::FromMilliseconds(
160 name_.c_str(), time_to_next.InSeconds());
164 timer_.Start(FROM_HERE, time_to_next, this, &SyncProcessRunner::Run);
  /external/chromium_org/media/cast/video_sender/
video_sender.cc 217 base::TimeDelta time_to_next = rtcp_->TimeToSendNextRtcpReport() - local
220 time_to_next = std::max(time_to_next,
225 time_to_next);
283 base::TimeDelta time_to_next; local
285 time_to_next = rtp_max_delay_;
287 time_to_next = last_send_time_ - cast_environment_->Clock()->NowTicks() +
290 time_to_next = std::max(time_to_next,
295 time_to_next);
324 base::TimeDelta time_to_next; local
    [all...]
  /external/chromium_org/media/cast/net/pacing/
paced_sender.cc 83 base::TimeDelta time_to_next = time_last_process_ - local
87 time_to_next = std::max(time_to_next, base::TimeDelta());
91 time_to_next);
  /external/chromium_org/media/cast/audio_sender/
audio_sender.cc 190 base::TimeDelta time_to_next = local
193 time_to_next = std::max(time_to_next,
198 time_to_next);
  /external/chromium_org/media/cast/video_receiver/
video_receiver.cc 447 base::TimeDelta time_to_next = rtcp_->TimeToSendNextRtcpReport() - local
450 time_to_next = std::max(time_to_next,
455 weak_factory_.GetWeakPtr()), time_to_next);
  /external/chromium_org/media/cast/rtcp/
rtcp.cc 493 base::TimeDelta time_to_next = (rtcp_interval_ / 2) + local
497 next_time_to_send_rtcp_ = now + time_to_next;

Completed in 75 milliseconds