Searched defs:PIPE (Results 1 - 25 of 42) sorted by relevance

12

/external/python/cpython3/Tools/scripts/
H A Dget-remote-certificate.py18 from subprocess import Popen, PIPE, STDOUT namespace
19 proc = Popen(cmd, stdout=PIPE, stderr=STDOUT, shell=True)
/external/capstone/suite/
H A Dtest_mc.py4 from subprocess import Popen, PIPE, STDOUT namespace
49 p = Popen(['llvm-mc', '-disassemble', '-print-imm-hex', '-mattr=+msa', syntax] + option, stdout=PIPE, stdin=PIPE, stderr=STDOUT)
51 p = Popen(['llvm-mc', '-disassemble', '-print-imm-hex', syntax] + option, stdout=PIPE, stdin=PIPE, stderr=STDOUT)
54 p = Popen(['llvm-mc', '-disassemble', '-print-imm-hex', '-mattr=+msa'] + option, stdout=PIPE, stdin=PIPE, stderr=STDOUT)
56 p = Popen(['llvm-mc', '-disassemble', '-print-imm-hex'] + option, stdout=PIPE, stdin=PIPE, stderr=STDOUT)
/external/lisa/libs/utils/android/workloads/
H A Dapp_startup.py22 from subprocess import Popen, PIPE namespace
H A Dgeekbench.py23 from subprocess import Popen, PIPE namespace
101 logcat = Popen(logcat_cmd, shell=True, stdout=PIPE)
H A Dexoplayer.py22 from subprocess import Popen, PIPE namespace
H A Dsysapp.py21 from subprocess import Popen, PIPE namespace
139 logcat = Popen(logcat_cmd, shell=True, stdout=PIPE)
H A Dsystemui.py22 from subprocess import Popen, PIPE namespace
156 logcat = Popen(logcat_cmd, shell=True, stdout=PIPE)
H A Duibench.py22 from subprocess import Popen, PIPE namespace
159 logcat = Popen(logcat_cmd, shell=True, stdout=PIPE)
H A Dvellamo.py25 from subprocess import Popen, PIPE namespace
127 logcat = Popen(logcat_cmd, shell=True, stdout=PIPE)
H A Djankbench.py24 from subprocess import Popen, PIPE namespace
198 logcat = Popen(logcat_cmd, shell=True, stdout=PIPE)
/external/python/cpython2/Tools/ssl/
H A Dget-remote-certificate.py16 from subprocess import Popen, PIPE, STDOUT namespace
17 proc = Popen(cmd, stdout=PIPE, stderr=STDOUT, shell=True)
/external/selinux/python/audit2allow/
H A Dtest_audit2allow.py5 from subprocess import Popen, PIPE namespace
28 p = Popen(['sudo', 'sepolgen-ifgen'], stdout=PIPE)
36 p = Popen(['python', './audit2allow', "-i", "test.log"], stdout=PIPE)
44 p = Popen(['python', './audit2why', "-i", "test.log"], stdout=PIPE)
/external/toolchain-utils/cwp/interpreter/
H A Dsymbolizer.py7 from subprocess import PIPE namespace
122 report_proc = Popen(report_cmd.split(), stdout=PIPE)
/external/autotest/venv/lucifer/
H A Deventlib.py27 from subprocess32 import PIPE namespace
82 with subprocess32.Popen(args, stdout=PIPE) as proc:
/external/devlib/devlib/instrument/
H A Dmonsoon.py4 from subprocess import Popen, PIPE namespace
75 self.process = Popen(cmd, stdout=self.buffer_file, stderr=PIPE)
H A Dacmecape.py9 from subprocess import Popen, PIPE, STDOUT namespace
81 self.process = Popen(self.command.split(), stdout=PIPE, stderr=STDOUT)
/external/python/cpython3/Lib/asyncio/
H A Dwindows_utils.py20 __all__ = ['socketpair', 'pipe', 'Popen', 'PIPE', 'PipeHandle']
27 PIPE = subprocess.PIPE variable
186 if stdin == PIPE:
191 if stdout == PIPE:
196 if stderr == PIPE:
219 if stdin == PIPE:
221 if stdout == PIPE:
223 if stderr == PIPE:
/external/python/cpython3/Lib/test/libregrtest/
H A Druntest_mp.py37 from subprocess import Popen, PIPE namespace
54 stdout=PIPE, stderr=PIPE,
/external/selinux/dbus/
H A Dselinux_server.py11 from subprocess import Popen, PIPE, STDOUT namespace
27 p = Popen(["/usr/sbin/semanage", "import"], stdout=PIPE, stderr=PIPE, stdin=PIPE, universal_newlines=True)
41 p = Popen(["/usr/sbin/semanage", "export"], stdout=PIPE, stderr=PIPE, universal_newlines=True)
55 p = Popen(["/usr/sbin/semodule", "--list=full"], stdout=PIPE, stderr=PIPE, universal_newlines=True)
/external/selinux/gui/
H A DmodulesPage.py20 from subprocess import Popen, PIPE namespace
104 fd = Popen("semodule -lfull", shell=True, stdout=PIPE).stdout
/external/selinux/python/sepolicy/
H A Dtest_sepolicy.py5 from subprocess import Popen, PIPE namespace
28 p = Popen(['sepolicy', 'manpage', '-d', 'httpd_t'], stdout=PIPE)
34 p = Popen(['sepolicy', 'manpage', '-a'], stdout=PIPE)
40 p = Popen(['sepolicy', 'network', '-l'], stdout=PIPE)
46 p = Popen(['sepolicy', 'network', '-t', 'http_port_t'], stdout=PIPE)
52 p = Popen(['sepolicy', 'network', '-p', '80'], stdout=PIPE)
58 p = Popen(['sepolicy', 'network', '-d', 'httpd_t'], stdout=PIPE)
64 p = Popen(['sepolicy', 'transition', '-s', 'httpd_t'], stdout=PIPE)
70 p = Popen(['sepolicy', 'transition', '-s', 'httpd_t', '-t', 'sendmail_t'], stdout=PIPE)
76 p = Popen(['sepolicy', 'booleans', '-a'], stdout=PIPE)
[all...]
/external/selinux/sandbox/
H A Dtest_sandbox.py6 from subprocess import Popen, PIPE namespace
29 p1 = Popen(['cat', '/etc/passwd'], stdout=PIPE)
30 p2 = Popen([sys.executable, 'sandbox', 'grep', 'root'], stdin=p1.stdout, stdout=PIPE)
38 p = Popen([sys.executable, 'sandbox', 'kill', '-HUP', str(pid)], stdout=PIPE, stderr=PIPE)
44 p = Popen([sys.executable, 'sandbox', 'ping', '-c 1 ', '127.0.0.1'], stdout=PIPE, stderr=PIPE)
50 p = Popen([sys.executable, 'sandbox', 'mkdir', '~/test'], stdout=PIPE, stderr=PIPE)
56 p = Popen([sys.executable, 'sandbox', 'ls', '~'], stdout=PIPE, stder
[all...]
/external/v8/tools/release/
H A Dsearch_related_commits.py11 from subprocess import Popen, PIPE namespace
137 p = Popen(args=command, stdin=PIPE,
138 stdout=PIPE, stderr=PIPE)
H A Dtest_mergeinfo.py12 from subprocess import Popen, PIPE, check_call namespace
25 p = Popen(args=fullCommand, stdin=PIPE,
26 stdout=PIPE, stderr=PIPE)
H A Dtest_search_related_commits.py10 from subprocess import Popen, PIPE, check_call namespace
25 p = Popen(args=fullCommand, stdin=PIPE,
26 stdout=PIPE, stderr=PIPE)

Completed in 2582 milliseconds

12