HomeSort by relevance Sort by last modified time
    Searched refs:timeout_time (Results 1 - 5 of 5) 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):
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_upnp_i.h 100 time_t timeout_time; /* when to age out the subscription */ member in struct:subscription
wps_upnp.c 612 while ((s = sm->subscriptions) != NULL && s->timeout_time < now) {
766 s->timeout_time = expire;
800 s->timeout_time = expire;
    [all...]
  /development/testrunner/test_defs/
instrumentation_test.py 157 timeout_time=60*60,

Completed in 628 milliseconds