Lines Matching refs:subprocess
28 import subprocess
134 subproc = subprocess.Popen([executable, option], stdout=subprocess.PIPE,
135 stderr=subprocess.PIPE)
253 subproc = subprocess.Popen(adb_args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
364 subprocess.check_call(['open', report_path])
366 except subprocess.CalledProcessError:
512 subproc = subprocess.Popen(self._build_symbolizer_args(real_path),
513 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
713 subproc = subprocess.Popen(args, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
744 output = subprocess.check_output([self.readelf_path, '-h', elf_file_path])
754 except subprocess.CalledProcessError:
762 output = subprocess.check_output([self.readelf_path, '-n', elf_file_path])
770 except subprocess.CalledProcessError:
788 output = subprocess.check_output([self.readelf_path, '-SW', elf_file_path])
797 except subprocess.CalledProcessError: