Home | History | Annotate | Download | only in oprofile

Lines Matching refs:command_args

84   def shell(self, command_args, echo=True):
85 return self._adb('shell', command_args, echo)
90 def _adb(self, command, command_args, echo):
91 return execute(self._base_args + [command] + command_args, echo)
172 command_args = args[1:]
177 rc = self.do_setup(command_args)
179 rc = self.do_shutdown(command_args)
181 rc = self.do_start(command_args)
183 rc = self.do_stop(command_args)
185 rc = self.do_status(command_args)
187 rc = self.do_import(command_args)
189 rc = self.do_report(command_args)
196 def do_setup(self, command_args):
204 opts, args = getopt.getopt(command_args,
265 def do_shutdown(self, command_args):
266 if len(command_args) != 0:
267 print '* Unsupported shutdown command arguments: %s' % (' '.join(command_args))
277 def do_start(self, command_args):
278 if len(command_args) != 0:
279 print '* Unsupported start command arguments: %s' % (' '.join(command_args))
289 def do_stop(self, command_args):
290 if len(command_args) != 0:
291 print '* Unsupported stop command arguments: %s' % (' '.join(command_args))
301 def do_status(self, command_args):
302 if len(command_args) != 0:
303 print '* Unsupported status command arguments: %s' % (' '.join(command_args))
313 def do_import(self, command_args):
317 opts, args = getopt.getopt(command_args,
411 def do_report(self, command_args):
412 rc, output = self._execute_opreport(command_args)