Lines Matching refs:subprocess
12 import subprocess
51 subprocess.check_output(['make', 'mrproper'], stderr=subprocess.STDOUT)
54 except subprocess.CalledProcessError as e:
68 subprocess.check_output(command, stderr=subprocess.STDOUT)
71 except subprocess.CalledProcessError as e:
82 proc = subprocess.Popen(command,
83 stderr=subprocess.PIPE,
84 stdout=subprocess.DEVNULL)
87 except subprocess.CalledProcessError as e:
95 def start(self, params: List[str], build_dir: str) -> subprocess.Popen:
116 def start(self, params: List[str], build_dir: str) -> subprocess.Popen:
128 return subprocess.Popen(qemu_command,
129 stdin=subprocess.PIPE,
130 stdout=subprocess.PIPE,
131 stderr=subprocess.STDOUT,
145 def start(self, params: List[str], build_dir: str) -> subprocess.Popen:
149 return subprocess.Popen([linux_bin] + params,
150 stdin=subprocess.PIPE,
151 stdout=subprocess.PIPE,
152 stderr=subprocess.STDOUT,
372 subprocess.call(['stty', 'sane'])
376 subprocess.call(['stty', 'sane'])