Home
last modified time | relevance | path

Searched refs:timeout_time (Results 1 – 16 of 16) sorted by relevance

/external/chromium_org/third_party/android_testrunner/
Dadb_interface.py54 def SendCommand(self, command_string, timeout_time=20, retry_count=3): argument
71 return run_command.RunCommand(adb_cmd, timeout_time=timeout_time,
74 def SendShellCommand(self, cmd, timeout_time=20, retry_count=3): argument
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)
128 self.SendCommand("pull %s %s" % (src, dest), timeout_time=60)
165 self, package_name, runner_name, timeout_time=60*10, argument
173 return self.StartInstrumentation(instrumentation_path, timeout_time=timeout_time,
178 self, instrumentation_path, timeout_time=60*10, no_window_animation=False, argument
[all …]
Drun_command.py38 def RunCommand(cmd, timeout_time=None, retry_count=3, return_output=True, argument
55 result = RunOnce(cmd, timeout_time=timeout_time,
66 def RunOnce(cmd, timeout_time=None, return_output=True, stdin_input=None): argument
128 t.join(timeout_time)
Dpatch.diff13 @@ -80,31 +81,36 @@ def RunOnce(cmd, timeout_time=None, return_output=True, stdin_input=None):
69 @@ -119,27 +125,17 @@ def RunOnce(cmd, timeout_time=None, return_output=True, stdin_input=None):
80 - if (not break_loop and timeout_time is not None
81 - and time.time() > start_time + timeout_time):
88 + t.join(timeout_time)
/external/chromium_org/third_party/libjingle/source/talk/base/
Dtaskrunner.cc157 return next_timeout_task_->timeout_time(); in next_task_timeout()
182 if (task->timeout_time()) { in UpdateTaskTimeout()
184 (task->timeout_time() <= next_timeout_task_->timeout_time())) { in UpdateTaskTimeout()
216 if (!task->IsDone() && (task->timeout_time() > 0)) in RecalcNextTimeout()
222 task->timeout_time() <= next_timeout_time) { in RecalcNextTimeout()
224 next_timeout_time = task->timeout_time(); in RecalcNextTimeout()
Dtask.h130 int64 timeout_time() const { return timeout_time_; } in timeout_time() function
Dtask_unittest.cc197 stuck_[i].task_->timeout_time() << std::endl; in Start()
289 << stuck_[i].task_->timeout_time() << std::endl; in check_passed()
/external/chromium/third_party/libjingle/source/talk/base/
Dtaskrunner.cc157 return next_timeout_task_->timeout_time(); in next_task_timeout()
182 if (task->timeout_time()) { in UpdateTaskTimeout()
184 (task->timeout_time() <= next_timeout_task_->timeout_time())) { in UpdateTaskTimeout()
216 if (!task->IsDone() && (task->timeout_time() > 0)) in RecalcNextTimeout()
222 task->timeout_time() <= next_timeout_time) { in RecalcNextTimeout()
224 next_timeout_time = task->timeout_time(); in RecalcNextTimeout()
Dtask.h130 int64 timeout_time() const { return timeout_time_; } in timeout_time() function
/external/chromium_org/tools/telemetry/telemetry/core/backends/
Dadb_commands.py77 def RunShellCommand(self, command, timeout_time=20, log_result=False): argument
91 return self._adb.RunShellCommand(command, timeout_time, log_result)
93 def RunShellCommandWithSU(self, command, timeout_time=20, log_result=False): argument
94 return self._adb.RunShellCommandWithSU(command, timeout_time, log_result)
/external/chromium_org/build/android/pylib/
Dandroid_commands.py406 return self._adb.SendCommand(uninstall_command, timeout_time=60)
431 timeout_time=2 * 60,
576 def WaitForSdCardReady(self, timeout_time): argument
583 while not sdcard_ready and attempts * wait_period < timeout_time:
592 'SD card not ready after %s seconds' % timeout_time)
626 def RunShellCommand(self, command, timeout_time=20, log_result=False): argument
644 "'%s'" % command, timeout_time).splitlines()
651 def GetShellCommandStatusAndOutput(self, command, timeout_time=20, argument
659 command + '; echo %$?', timeout_time, log_result)
897 self.RunShellCommand(cmd, timeout_time=2 * 60))
[all …]
/external/chromium_org/build/android/pylib/monkey/
Dtest_runner.py43 return self.adb.RunShellCommand(' '.join(cmd), timeout_time=timeout_ms)
/external/wpa_supplicant_8/src/wps/
Dwps_upnp_i.h82 time_t timeout_time; /* when to age out the subscription */ member
Dwps_upnp.c570 if (s->timeout_time > now) in subscription_list_age()
728 s->timeout_time = expire; in subscription_start()
769 s->timeout_time = expire; in subscription_renew()
/external/chromium_org/build/android/pylib/gtest/
Dtest_package_apk.py89 timeout_time=60 * 2)
/external/chromium_org/build/android/pylib/utils/
Demulator.py384 timeout_time=self._WAITFORDEVICE_TIMEOUT,
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
Dandroid_browser_backend.py368 self._adb.Adb().Adb().SendCommand(cmd, timeout_time=240)