HomeSort by relevance Sort by last modified time
    Searched refs:max_time (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/extensions/browser/api/dns/
mock_host_resolver_creator.cc 36 base::TimeDelta max_time = base::TimeDelta::FromSeconds(5); local
37 resolver_event_.TimedWait(max_time);
61 base::TimeDelta max_time = base::TimeDelta::FromSeconds(5); local
62 CHECK(resolver_event_.TimedWait(max_time));
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
event_wrapper.h 48 virtual EventTypeWrapper Wait(unsigned long max_time) = 0;
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
event_win.h 27 virtual EventTypeWrapper Wait(unsigned long max_time);
event_win.cc 39 EventTypeWrapper EventWindows::Wait(unsigned long max_time) {
40 unsigned long res = WaitForSingleObject(event_, max_time);
event_posix.h 34 virtual EventTypeWrapper Wait(unsigned long max_time) OVERRIDE;
  /external/chromium_org/base/synchronization/
condition_variable.h 93 void TimedWait(const TimeDelta& max_time);
waitable_event_win.cc 55 bool WaitableEvent::TimedWait(const TimeDelta& max_time) {
57 DCHECK(max_time >= TimeDelta::FromMicroseconds(0));
61 double timeout = ceil(max_time.InMillisecondsF());
condition_variable_win.cc 63 virtual void TimedWait(const TimeDelta& max_time) = 0;
78 virtual void TimedWait(const TimeDelta& max_time) OVERRIDE;
97 void WinVistaCondVar::TimedWait(const TimeDelta& max_time) {
99 DWORD timeout = static_cast<DWORD>(max_time.InMilliseconds());
133 virtual void TimedWait(const TimeDelta& max_time) OVERRIDE;
244 void WinXPCondVar::TimedWait(const TimeDelta& max_time) {
258 WaitForSingleObject(handle, static_cast<DWORD>(max_time.InMilliseconds()));
507 WaitForSingleObject(waiting_event, max_time.InMilliseconds());
657 void ConditionVariable::TimedWait(const TimeDelta& max_time) {
658 impl_->TimedWait(max_time);
    [all...]
condition_variable_posix.cc 61 void ConditionVariable::TimedWait(const TimeDelta& max_time) {
63 int64 usecs = max_time.InMicroseconds();
waitable_event.h 86 // Wait up until max_time has passed for the event to be signaled. Returns
88 // does not necessarily mean that max_time was exceeded.
91 bool TimedWait(const TimeDelta& max_time);
waitable_event_posix.cc 160 bool WaitableEvent::TimedWait(const TimeDelta& max_time) {
162 const TimeTicks end_time(TimeTicks::Now() + max_time);
163 const bool finite_time = max_time.ToInternalValue() >= 0;
  /external/chromium_org/chrome/test/chromedriver/server/
server.py 37 max_time = time.time() + 10
39 if time.time() > max_time:
  /external/chromium_org/media/blink/
websourcebuffer_impl.cc 27 base::TimeDelta max_time = base::TimeDelta::FromInternalValue(kint64max - 1);
28 double max_time_in_seconds = max_time.InSecondsF();
31 return max_time;
  /external/chromium_org/media/mojo/services/
mojo_renderer_service.cc 118 base::TimeDelta max_time) {
119 client()->OnTimeUpdate(time.InMicroseconds(), max_time.InMicroseconds());
mojo_renderer_service.h 59 void OnAudioTimeUpdate(base::TimeDelta time, base::TimeDelta max_time);
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
test_util.h 66 virtual webrtc::EventTypeWrapper Wait(unsigned long max_time) {
  /external/llvm/utils/lit/lit/
run.py 188 def execute_tests(self, display, jobs, max_time=None,
191 execute_tests(display, jobs, [max_time])
198 If max_time is non-None, it should be a time in seconds after which to
242 if max_time is not None:
245 timeout_timer = threading.Timer(max_time, timeout_handler)
256 if max_time is not None:
  /external/fio/tools/plot/
fio2gnuplot 151 def compute_temp_file(fio_data_file,disk_perf,gnuplot_output_dir, min_time, max_time):
152 end_time=max_time
211 if ((float(time)>(float(min_time)*1000)) and ((int(time) < (int(max_time)*1000)) or max_time==-1)):
377 print '-M or --max_time <time> : Only consider data ending before <time> seconds (default is -1 aka nolimit)'
394 max_time=-1
410 opts, args = getopt.getopt(argv[1:],"ghkbivo:d:t:p:G:m:M:",['bandwidth', 'iops', 'pattern', 'outputfile', 'outputdir', 'title', 'min_time', 'max_time', 'gnuplot', 'Global', 'help', 'verbose','keep'])
442 elif opt in ("-M", "--max_time"):
443 max_time=arg
495 blk_size=compute_temp_file(fio_data_file,disk_perf,gnuplot_output_dir,min_time,max_time)
    [all...]
  /external/bluetooth/bluedroid/stack/gap/
gap_api.c 444 ** max_time - Maximum amount of time between consecutive inquiries.
465 UINT16 max_time, tGAP_CALLBACK *p_results_cb)
480 max_time <= min_time ||
481 max_time < GAP_PER_INQ_MIN_MAX_PERIOD)
492 btm_status = BTM_SetPeriodicInquiryMode(p_inq_parms, max_time, min_time,
    [all...]
  /device/asus/fugu/libaudio/
AudioStreamOut.cpp 679 int64_t max_time = LLONG_MIN; local
705 if (!max_time_valid || (max_time < tmp)) {
706 max_time = tmp;
734 adjustOutputs(max_time);
737 // hit the speakers is just max_time plus the maximum amt of delay
739 *timestamp = max_time;
  /external/chromium_org/net/quic/congestion_control/
send_algorithm_simulator.cc 77 QuicTime::Delta max_time) {
78 const QuicTime end_time = max_time.IsInfinite() ?
80 clock_->Now().Add(max_time);
send_algorithm_simulator.h 163 // |max_time| is reached, or all senders have finished sending. If max_bytes
164 // is 0, it does not apply, and if |max_time| is Zero, no time limit applies.
165 void TransferBytes(QuicByteCount max_bytes, QuicTime::Delta max_time);
  /external/chromium_org/chrome/browser/history/
web_history_service.cc 283 const std::string& max_time,
290 deletion->SetString("max_timestamp_usec", max_time);
  /external/chromium_org/tools/real_world_impact/
real_world_impact.py 312 max_time, url = max(t for t in results if t)
313 elapsed_detail = "(slowest: %.2fs on %s)" % (max_time, url)
  /external/chromium_org/third_party/icu/source/tools/tzcode/
zic.c 201 static zic_t max_time; variable
828 max_time = -(min_time + 1);
1234 z.z_untiltime < max_time &&
1236 zones[nzones - 1].z_untiltime < max_time &&
1321 if (dayoff > max_time / SECSPERDAY) {
    [all...]

Completed in 638 milliseconds

1 2