Home | History | Annotate | Download | only in ndk

Lines Matching defs:subprocess

31 import sys, os, argparse, subprocess, types
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.STDOUT,
386 text = subprocess.check_output(fullargs,
389 except subprocess.CalledProcessError as e:
512 ADB_VERSION = subprocess.check_output([ADB_CMD, 'version'],
794 gdbhelp = subprocess.check_output([GDBCLIENT, '--help']).decode('ascii')
801 gdbp = subprocess.Popen(gdbargs)