Searched defs:STDOUT (Results 1 - 16 of 16) sorted by relevance

/external/icu/icu4j/perf-tests/
H A Dcollationperf.pl130 format STDOUT = format
/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/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/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/
H A D2-1.c48 #define STDOUT 1 macro
72 close(STDOUT);
74 dup2(the_pipe[1], STDOUT);
H A D2-2.c49 #define STDOUT 1 macro
73 close(STDOUT);
75 dup2(the_pipe[1], STDOUT);
/external/devlib/devlib/instrument/
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.py28 STDOUT = subprocess.STDOUT variable
199 elif stderr == STDOUT:
H A Dsubprocess.py14 STDOUT = subprocess.STDOUT variable
/external/selinux/dbus/
H A Dselinux_server.py11 from subprocess import Popen, PIPE, STDOUT namespace
/external/vulkan-validation-layers/build-android/
H A Dbuild.py26 from subprocess import PIPE, STDOUT namespace
/external/lisa/libs/utils/
H A Denergy.py26 from subprocess import Popen, PIPE, STDOUT namespace
350 p = Popen([self._iiocapturebin, '-h'], stdout=PIPE, stderr=STDOUT)
403 stdout=PIPE, stderr=STDOUT)
/external/libpng/contrib/pngminus/
H A Dpng2pnm.c39 #define STDOUT 1 macro
155 setmode (STDOUT, O_BINARY);
H A Dpnm2png.c39 #define STDOUT 1 macro
154 setmode (STDOUT, O_BINARY);
/external/python/cpython2/Lib/
H A Dsubprocess.py30 STDOUT: Special value that indicates that stderr should go to stdout
83 __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call",
115 STDOUT = -2 variable
203 To capture standard error in the result, use stderr=STDOUT.
207 ... stderr=STDOUT)
544 elif stderr == STDOUT:
825 elif stderr == STDOUT:
/external/python/cpython3/Lib/
H A Dsubprocess.py27 STDOUT: Special value that indicates that stderr should go to stdout
158 __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput",
215 STDOUT = -2 variable
308 To capture standard error in the result, use stderr=STDOUT.
312 ... stderr=STDOUT)
515 data = check_output(cmd, shell=True, universal_newlines=True, stderr=STDOUT)
927 elif stderr == STDOUT:
1180 elif stderr == STDOUT:

Completed in 443 milliseconds