Lines Matching refs:command_args
85 def shell(self, command_args, echo=True):
86 return self._adb('shell', command_args, echo)
91 def _adb(self, command, command_args, echo):
92 return execute(self._base_args + [command] + command_args, echo)
178 command_args = args[1:]
183 rc = self.do_setup(command_args)
185 rc = self.do_shutdown(command_args)
187 rc = self.do_start(command_args)
189 rc = self.do_stop(command_args)
191 rc = self.do_status(command_args)
193 rc = self.do_import(command_args)
195 rc = self.do_report(command_args)
197 rc = self.do_annotate(command_args)
204 def do_setup(self, command_args):
212 opts, args = getopt.getopt(command_args,
269 def do_shutdown(self, command_args):
270 if len(command_args) != 0:
271 print '* Unsupported shutdown command arguments: %s' % (' '.join(command_args))
281 def do_start(self, command_args):
282 if len(command_args) != 0:
283 print '* Unsupported start command arguments: %s' % (' '.join(command_args))
293 def do_stop(self, command_args):
294 if len(command_args) != 0:
295 print '* Unsupported stop command arguments: %s' % (' '.join(command_args))
305 def do_status(self, command_args):
306 if len(command_args) != 0:
307 print '* Unsupported status command arguments: %s' % (' '.join(command_args))
317 def do_import(self, command_args):
321 opts, args = getopt.getopt(command_args,
415 def do_report(self, command_args):
416 rc, output = self._execute_opreport(command_args)
422 def do_annotate(self, command_args):
423 rc, output = self._execute_opannotate(command_args)
440 def _execute_opannotate(self, command_args):
442 opts, args = getopt.getopt(command_args, 'sap:',