Lines Matching full:stdout
41 def __init__(self, cmd, stdout, stderr, exit_code):
45 self.stdout = stdout
52 subprocess.check_call([adb_path, 'start-server'], stdout=devnull,
117 subprocess.check_call([adb_path, 'start-server'], stdout=devnull,
292 self.adb_cmd + cmd, stderr=subprocess.STDOUT)
301 A (stdout, stderr) tuple. Stderr may be combined into stdout
307 exit_code, stdout, stderr = self.shell_nocheck(cmd)
309 raise ShellError(cmd, stdout, stderr, exit_code)
310 return stdout, stderr
319 An (exit_code, stdout, stderr) tuple. Stderr may be combined
320 into stdout if the device doesn't support separate streams.
325 cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
326 stdout, stderr = p.communicate()
330 exit_code, stdout = self._parse_shell_output(stdout)
331 return exit_code, stdout, stderr