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

  /external/webrtc/webrtc/base/
taskrunner.cc 140 return next_timeout_task_->timeout_time();
165 if (task->timeout_time()) {
167 (task->timeout_time() <= next_timeout_task_->timeout_time())) {
199 if (!task->IsDone() && (task->timeout_time() > 0))
205 task->timeout_time() <= next_timeout_time) {
207 next_timeout_time = task->timeout_time();
task.h 113 int64_t timeout_time() const { return timeout_time_; } function in class:rtc::Task
task_unittest.cc 179 stuck_[i].task_->timeout_time() << std::endl;
271 << stuck_[i].task_->timeout_time() << std::endl;
  /development/testrunner/
run_command.py 37 def RunCommand(cmd, timeout_time=None, retry_count=3, return_output=True,
43 timeout_time: time in seconds to wait for command to run before aborting.
54 result = RunOnce(cmd, timeout_time=timeout_time,
65 def RunOnce(cmd, timeout_time=None, return_output=True, stdin_input=None):
70 timeout_time: time in seconds to wait for command to run before aborting.
78 timeout_time seconds.
129 if (not break_loop and timeout_time is not None
130 and time.time() > start_time + timeout_time):
adb_interface.py 54 def SendCommand(self, command_string, timeout_time=60, retry_count=3):
59 timeout_time: number of seconds to wait for command to respond before
71 return run_command.RunCommand(adb_cmd, timeout_time=timeout_time,
74 def SendShellCommand(self, cmd, timeout_time=20, retry_count=3):
79 timeout_time: number of seconds to wait for command to respond before
90 return self.SendCommand("shell %s" % cmd, timeout_time=timeout_time,
99 bug_output = self.SendShellCommand("bugreport", timeout_time=60)
111 self.SendCommand("push %s %s" % (src, dest), timeout_time=60
    [all...]
runtest.py 325 output = run_command.RunCommand(cmd, return_output=True, timeout_time=600)
331 run_command.RunCommand(alt_cmd, return_output=False, timeout_time=600)
333 output = run_command.RunCommand(cmd, return_output=True, timeout_time=600)
  /test/vts/utils/python/controllers/
android.py 68 timeout_time = time.time() + self._SOCKET_CONNECT_TIMEOUT
72 (addr, port), max(1, timeout_time - time.time()))
82 if time.time() + 1 >= timeout_time:
  /hardware/interfaces/bluetooth/1.0/default/test/
h4_protocol_unittest.cc 133 auto timeout_time = local
137 done.wait_until(lock, timeout_time);
158 auto timeout_time = local
162 done.wait_until(lock, timeout_time);
mct_protocol_unittest.cc 139 auto timeout_time = local
143 done.wait_until(lock, timeout_time);
164 auto timeout_time = local
168 done.wait_until(lock, timeout_time);
  /external/v8/src/
futex-emulation.cc 117 base::TimeTicks timeout_time = start_time + rel_timeout; local
168 if (current_time >= timeout_time) {
173 base::TimeDelta time_until_timeout = timeout_time - current_time;
  /external/wpa_supplicant_8/src/wps/
wps_upnp_i.h 82 time_t timeout_time; /* when to age out the subscription */ member in struct:subscription
wps_upnp.c 558 if (s->timeout_time > now)
722 s->timeout_time = expire;
768 s->timeout_time = expire;
    [all...]
  /external/chromium-trace/catapult/third_party/pyserial/serial/
rfc2217.py 340 timeout_time = time.time() + timeout
341 while time.time() < timeout_time:
442 timeout_time = time.time() + self._network_timeout
443 while time.time() < timeout_time:
487 timeout_time = time.time() + self._network_timeout
488 while time.time() < timeout_time:
    [all...]
  /development/testrunner/test_defs/
instrumentation_test.py 156 timeout_time=60*60,
  /tools/test/connectivity/acts/framework/acts/test_utils/tel/
tel_test_utils.py 688 timeout_time = time.time() + MAX_WAIT_TIME_AIRPLANEMODE_EVENT
717 log, ad, False, timeout_time - time.time()):
728 timeout_time - time.time()):
    [all...]

Completed in 187 milliseconds