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

  /development/testrunner/
adb_interface.py 54 def SendCommand(self, command_string, timeout_time=20, 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...]
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):
runtest.py 280 output = run_command.RunCommand(cmd, return_output=True, timeout_time=600)
445 self._adb.SendCommand("wait-for-device", timeout_time=60,
  /external/chromium_org/third_party/android_testrunner/
adb_interface.py 54 def SendCommand(self, command_string, timeout_time=20, 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...]
run_command.py 38 def RunCommand(cmd, timeout_time=None, retry_count=3, return_output=True,
44 timeout_time: time in seconds to wait for command to run before aborting.
55 result = RunOnce(cmd, timeout_time=timeout_time,
66 def RunOnce(cmd, timeout_time=None, return_output=True, stdin_input=None):
71 timeout_time: time in seconds to wait for command to run before aborting.
79 timeout_time seconds.
128 t.join(timeout_time)
  /external/chromium/third_party/libjingle/source/talk/base/
taskrunner.cc 157 return next_timeout_task_->timeout_time();
182 if (task->timeout_time()) {
184 (task->timeout_time() <= next_timeout_task_->timeout_time())) {
216 if (!task->IsDone() && (task->timeout_time() > 0))
222 task->timeout_time() <= next_timeout_time) {
224 next_timeout_time = task->timeout_time();
task.h 130 int64 timeout_time() const { return timeout_time_; } function in class:talk_base::Task
  /external/chromium_org/third_party/libjingle/source/talk/base/
taskrunner.cc 157 return next_timeout_task_->timeout_time();
182 if (task->timeout_time()) {
184 (task->timeout_time() <= next_timeout_task_->timeout_time())) {
216 if (!task->IsDone() && (task->timeout_time() > 0))
222 task->timeout_time() <= next_timeout_time) {
224 next_timeout_time = task->timeout_time();
task.h 130 int64 timeout_time() const { return timeout_time_; } function in class:talk_base::Task
task_unittest.cc 197 stuck_[i].task_->timeout_time() << std::endl;
289 << stuck_[i].task_->timeout_time() << std::endl;
  /external/chromium_org/tools/telemetry/telemetry/core/backends/
adb_commands.py 77 def RunShellCommand(self, command, timeout_time=20, log_result=False):
83 timeout_time: Number of seconds to wait for command to respond before
91 return self._adb.RunShellCommand(command, timeout_time, log_result)
93 def RunShellCommandWithSU(self, command, timeout_time=20, log_result=False):
94 return self._adb.RunShellCommandWithSU(command, timeout_time, log_result)
  /external/chromium_org/build/android/pylib/
android_commands.py 406 return self._adb.SendCommand(uninstall_command, timeout_time=60)
431 timeout_time=2 * 60,
576 def WaitForSdCardReady(self, timeout_time):
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):
632 timeout_time: Number of seconds to wait for command to respond before
644 "'%s'" % command, timeout_time).splitlines()
651 def GetShellCommandStatusAndOutput(self, command, timeout_time=20,
659 command + '; echo %$?', timeout_time, log_result
    [all...]
  /external/chromium_org/build/android/pylib/monkey/
test_runner.py 43 return self.adb.RunShellCommand(' '.join(cmd), timeout_time=timeout_ms)
  /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 570 if (s->timeout_time > now)
728 s->timeout_time = expire;
769 s->timeout_time = expire;
    [all...]
  /external/chromium_org/build/android/pylib/gtest/
test_package_apk.py 89 timeout_time=60 * 2)
  /system/core/init/
util.c 369 time_t timeout_time = gettime() + timeout; local
372 while (gettime() < timeout_time && ((ret = stat(filename, &info)) < 0))
  /system/core/fs_mgr/
fs_mgr.c 132 time_t timeout_time = gettime() + timeout; local
135 while (gettime() < timeout_time && ((ret = stat(filename, &info)) < 0))
  /development/testrunner/test_defs/
instrumentation_test.py 156 timeout_time=60*60,
  /external/chromium_org/build/android/pylib/utils/
emulator.py 384 timeout_time=self._WAITFORDEVICE_TIMEOUT,
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
android_browser_backend.py 368 self._adb.Adb().Adb().SendCommand(cmd, timeout_time=240)

Completed in 339 milliseconds