Home | History | Annotate | Download | only in testrunner

Lines Matching refs:command_string

54   def SendCommand(self, command_string, timeout_time=60, retry_count=3):
58 command_string: adb command to run
69 adb_cmd = "adb %s %s" % (self._target_arg, command_string)
231 command_string = self._BuildInstrumentationCommandPath(
236 logger.Log(command_string)
239 self.SendShellCommand(command_string, timeout_time=timeout_time,
301 command_string = "am instrument"
303 command_string += " --user %s" % user
305 command_string += " --no_window_animation"
308 command_string += (
313 command_string += " -e %s '%s'" % (key, value)
315 command_string += " -r"
316 command_string += " -w '%s'" % instrumentation_path
317 return command_string