Home | History | Annotate | Download | only in oprofile

Lines Matching refs:rc

70     rc = popen.poll()
71 if rc is not None:
74 print 'exit code: %d' % rc
75 return rc, output
147 rc = self.do_main()
148 if rc == 2:
151 return rc
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)
202 return rc
250 rc, output = self.adb.shell(['cat', '/proc/kallsyms'], echo=False)
251 if rc != 0:
259 rc, output = self.adb.shell(['/system/xbin/opcontrol'] + self._opcontrol_verbose_arg() + [
264 if rc != 0:
274 rc, output = self.adb.shell(['/system/xbin/opcontrol'] + self._opcontrol_verbose_arg() + [
276 if rc != 0:
286 rc, output = self.adb.shell(['/system/xbin/opcontrol'] + self._opcontrol_verbose_arg() + [
288 if rc != 0:
298 rc, output = self.adb.shell(['/system/xbin/opcontrol'] + self._opcontrol_verbose_arg() + [
300 if rc != 0:
310 rc, output = self.adb.shell(['/system/xbin/opcontrol'] + self._opcontrol_verbose_arg() + [
312 if rc != 0:
363 rc, output = self.adb.shell(['/system/xbin/opcontrol'] + self._opcontrol_verbose_arg() + [
365 if rc != 0:
372 rc, output = self.adb.pull('/data/oprofile/samples/', raw_samples_dir + '/', echo=False)
373 if rc != 0:
380 rc, output = self.adb.pull('/data/oprofile/abi', abi_file, echo=False)
381 if rc != 0:
402 rc, output = execute([opimport_bin, '-a', abi_file, '-o', out_path, in_path], echo=False)
403 if rc != 0:
409 rc, output = self._execute_opreport([])
410 if rc != 0:
416 rc, output = self._execute_opreport(command_args)
417 if rc != 0:
423 rc, output = self._execute_opannotate(command_args)
424 if rc != 0:
469 rc = tool.main()
470 sys.exit(rc)