Home | History | Annotate | Download | only in adb

Lines Matching refs:exit_code

41     def __init__(self, cmd, stdout, stderr, exit_code):
43 '`{0}` exited with code {1}'.format(cmd, exit_code))
47 self.exit_code = exit_code
304 An (exit_code, output_string) tuple. The output string is
343 exit_code, stdout, stderr = self.shell_nocheck(cmd)
344 if exit_code != 0:
345 raise ShellError(cmd, stdout, stderr, exit_code)
355 An (exit_code, stdout, stderr) tuple. Stderr may be combined
364 exit_code = p.returncode
366 exit_code, stdout = self._parse_shell_output(stdout)
367 return exit_code, stdout, stderr