Home
last modified time | relevance | path

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

/development/testrunner/
Dadb_interface.py54 def SendCommand(self, command_string, timeout_time=60, 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)
178 self, package_name, runner_name, timeout_time=60*10, argument
187 return self.StartInstrumentation(instrumentation_path, timeout_time=timeout_time,
194 self, instrumentation_path, timeout_time=60*10, no_window_animation=False, argument
[all …]
Drun_command.py37 def RunCommand(cmd, timeout_time=None, retry_count=3, return_output=True, argument
54 result = RunOnce(cmd, timeout_time=timeout_time,
65 def RunOnce(cmd, timeout_time=None, return_output=True, stdin_input=None): argument
129 if (not break_loop and timeout_time is not None
130 and time.time() > start_time + timeout_time):
Druntest.py329 output = run_command.RunCommand(cmd, return_output=True, timeout_time=600)
335 run_command.RunCommand(alt_cmd, return_output=False, timeout_time=600)
337 output = run_command.RunCommand(cmd, return_output=True, timeout_time=600)
/development/testrunner/test_defs/
Dinstrumentation_test.py156 timeout_time=60*60,