Searched refs:subprocess (Results 1 - 2 of 2) sorted by relevance

/ndk/sources/third_party/googletest/googletest/test/
H A Dgtest_test_utils.py47 import subprocess namespace
203 env: Dictionary with environment to pass to the subprocess.
217 # The subprocess module is the preferrable way of running programs
226 stderr = subprocess.STDOUT
228 stderr = subprocess.PIPE
230 p = subprocess.Popen(command,
231 stdout=subprocess.PIPE, stderr=stderr,
250 # current 'os.environ' for compatibility with the subprocess.Popen
275 # subprocess.Popen.returncode.
/ndk/
H A Dndk-gdb.py31 import sys, os, argparse, subprocess, types namespace
276 text = subprocess.check_output([GNUMAKE_CMD,
291 text = subprocess.check_output([GNUMAKE_CMD,
334 used_stderr = subprocess.PIPE
336 used_stderr = subprocess.STDOUT
338 used_stdin = subprocess.PIPE
341 p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=used_stderr, stdin=used_stdin,
381 text = subprocess.check_output(fullargs,
382 stderr=subprocess
[all...]

Completed in 78 milliseconds