Lines Matching refs:command_string
54 def SendCommand(self, command_string, timeout_time=60, retry_count=3): argument
69 adb_cmd = "adb %s %s" % (self._target_arg, command_string)
234 command_string = self._BuildInstrumentationCommandPath(
239 logger.Log(command_string)
242 self.SendShellCommand(command_string, timeout_time=timeout_time,
309 command_string = "am instrument"
311 command_string += " --no-hidden-api-checks"
313 command_string += " --user %s" % user
315 command_string += " --no_window_animation"
318 command_string += (
323 command_string += " -e %s '%s'" % (key, value)
325 command_string += " -r"
326 command_string += " -w '%s'" % instrumentation_path
327 return command_string