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

  /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_org/third_party/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 timeout_time() const { return timeout_time_; } function in class:rtc::Task
task_unittest.cc 181 stuck_[i].task_->timeout_time() << std::endl;
273 << 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=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...]
runtest.py 293 output = run_command.RunCommand(cmd, return_output=True, timeout_time=600)
299 run_command.RunCommand(alt_cmd, return_output=False, timeout_time=600)
301 output = run_command.RunCommand(cmd, return_output=True, timeout_time=600)
  /external/lldb/source/Core/
Communication.cpp 164 TimeValue timeout_time; local
167 timeout_time = TimeValue::Now();
168 timeout_time.OffsetWithMicroSeconds (timeout_usec);
174 while (listener.WaitForEvent (timeout_time.IsValid() ? &timeout_time : NULL, event_sp))
  /external/chromium_org/build/android/pylib/
android_commands.py 476 return self._adb.SendCommand(uninstall_command, timeout_time=60)
501 timeout_time=2 * 60,
644 def WaitForSdCardReady(self, timeout_time):
651 while not sdcard_ready and attempts * wait_period < timeout_time:
660 'SD card not ready after %s seconds' % timeout_time)
700 def RunShellCommand(self, command, timeout_time=20, log_result=False):
705 timeout_time: Number of seconds to wait for command to respond before
717 "'%s'" % command, timeout_time).splitlines()
727 def GetShellCommandStatusAndOutput(self, command, timeout_time=20,
735 command + '; echo %$?', timeout_time, log_result
    [all...]
  /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 555 if (s->timeout_time > now)
716 s->timeout_time = expire;
757 s->timeout_time = expire;
    [all...]
  /external/chromium_org/tools/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...]
  /external/lldb/source/Host/common/
Host.cpp     [all...]
  /system/core/init/
util.c 377 time_t timeout_time = gettime() + timeout; local
380 while (gettime() < timeout_time && ((ret = stat(filename, &info)) < 0))
  /external/chromium_org/build/android/pylib/device/
device_utils.py 339 cmd, timeout_time=timeout)
344 output = self.old_interface.RunShellCommand(cmd, timeout_time=timeout)
  /system/core/fs_mgr/
fs_mgr.c 83 time_t timeout_time = gettime() + timeout; local
86 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 402 timeout_time=self._WAITFORDEVICE_TIMEOUT,
  /external/lldb/source/Target/
Process.cpp     [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunicationClient.cpp 346 TimeValue timeout_time; local
347 timeout_time = TimeValue::Now();
348 timeout_time.OffsetWithSeconds (m_packet_timeout);
353 if (m_async_packet_predicate.WaitForValueEqualTo (false, &timeout_time, &timed_out))
369 if (m_private_is_running.WaitForValueEqualTo (true, &timeout_time, &timed_out))
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
android_browser_backend.py 401 cmd, timeout_time=240)

Completed in 1304 milliseconds