Lines Matching refs:command_string
54 def SendCommand(self, command_string, timeout_time=20, retry_count=3): argument
69 adb_cmd = "adb %s %s" % (self._target_arg, command_string)
228 command_string = self._BuildInstrumentationCommandPath(
232 logger.Log(command_string)
235 self.SendShellCommand(command_string, timeout_time=timeout_time,
295 command_string = "am instrument"
297 command_string += " --no_window_animation"
300 command_string += (
305 command_string += " -e %s '%s'" % (key, value)
307 command_string += " -r"
308 command_string += " -w '%s'" % instrumentation_path
309 return command_string