HomeSort by relevance Sort by last modified time
    Searched refs:timeout_time (Results 1 - 13 of 13) 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 323 output = run_command.RunCommand(cmd, return_output=True, timeout_time=600)
329 run_command.RunCommand(alt_cmd, return_output=False, timeout_time=600)
331 output = run_command.RunCommand(cmd, return_output=True, timeout_time=600)
  /tools/test/connectivity/acts/framework/acts/controllers/
android.py 59 timeout_time = time.time() + self._SOCKET_CONNECT_TIMEOUT
63 (addr, port), max(1,timeout_time - time.time()))
73 if time.time() + 1 >= timeout_time:
  /external/v8/src/
futex-emulation.cc 116 base::TimeTicks timeout_time = start_time + rel_timeout; local
167 if (current_time >= timeout_time) {
172 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/telemetry/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...]
  /system/core/fs_mgr/
fs_mgr.c 87 time_t timeout_time = gettime() + timeout; local
90 while (gettime() < timeout_time && ((ret = stat(filename, &info)) < 0))
  /development/testrunner/test_defs/
instrumentation_test.py 156 timeout_time=60*60,

Completed in 575 milliseconds