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

  /external/chromium_org/third_party/libjingle/source/talk/base/
timing.h 46 // TimerNow() is like WallTimeNow(), but is monotonically
52 virtual double TimerNow();
56 // time based on TimerNow() measurement.
62 // actual waiting time based on TimerNow() measurement.
timing.cc 83 double Timing::TimerNow() {
88 double start_time = TimerNow();
89 while (TimerNow() - start_time < period) {
91 return TimerNow() - start_time;
95 double start_time = TimerNow();
126 return TimerNow() - start_time;
  /external/chromium_org/third_party/webrtc/base/
timing.h 29 // TimerNow() is like WallTimeNow(), but is monotonically
35 virtual double TimerNow();
39 // time based on TimerNow() measurement.
45 // actual waiting time based on TimerNow() measurement.
timing.cc 66 double Timing::TimerNow() {
71 double start_time = TimerNow();
72 while (TimerNow() - start_time < period) {
74 return TimerNow() - start_time;
78 double start_time = TimerNow();
109 return TimerNow() - start_time;
  /external/chromium_org/content/browser/renderer_host/p2p/
socket_host_throttler.cc 35 double now = timing_->TimerNow();
socket_host_udp_unittest.cc 32 virtual double TimerNow() OVERRIDE { return now_; }
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videocapturer.cc 139 previous_frame_time_ = frame_length_time_reporter_.TimerNow();
721 double time_now = frame_length_time_reporter_.TimerNow();
rtpdataengine.cc 341 double now = timing_->TimerNow();
rtpdataengine_unittest.cc 45 virtual double TimerNow() {

Completed in 2162 milliseconds