HomeSort by relevance Sort by last modified time
    Searched refs:PIPE (Results 51 - 75 of 750) sorted by null

1 23 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Pkcs7Sign/
Pkcs7Sign.py 112 Process = subprocess.Popen('%s version' % (OpenSslCommand), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
206 Process = subprocess.Popen('%s smime -sign -binary -signer "%s" -outform DER -md sha256 -certfile "%s"' % (OpenSslCommand, args.SignerPrivateCertFileName, args.OtherPublicCertFileName), stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
275 Process = subprocess.Popen('%s smime -verify -inform DER -content %s -CAfile %s' % (OpenSslCommand, args.OutputFileName, args.TrustedPublicCertFileName), stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /external/autotest/client/common_lib/
smogcheck_util.py 32 stdout=subprocess.PIPE,
33 stderr=subprocess.PIPE)
  /external/autotest/client/profilers/sar/
sar.py 34 stdout=subprocess.PIPE,
35 stderr=subprocess.PIPE)
  /external/autotest/client/site_tests/platform_AccurateTime/
platform_AccurateTime.py 30 '-nv'], stdout=subprocess.PIPE,
31 stderr=subprocess.PIPE)
  /external/autotest/server/cros/
gsutil_wrapper.py 41 stdout=subprocess.PIPE,
42 stderr=subprocess.PIPE)
  /external/autotest/venv/lucifer/
eventlib.py 27 from subprocess32 import PIPE
82 with subprocess32.Popen(args, stdout=PIPE) as proc:
  /external/avb/test/
avbtool_signing_helper_with_files_test.py 61 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  /external/llvm/test/Other/
opt-bisect-helper.py 29 opt_result = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /external/python/cpython3/Lib/asyncio/
windows_utils.py 20 __all__ = ['socketpair', 'pipe', 'Popen', 'PIPE', 'PipeHandle']
27 PIPE = subprocess.PIPE
38 """A socket pair usable as a self-pipe, for Windows.
80 # Replacement for os.pipe() using handles instead of fds
83 def pipe(*, duplex=False, overlapped=(True, True), bufsize=BUFSIZE): function
84 """Like os.pipe() but with overlapped support and using handles not fds."""
85 address = tempfile.mktemp(prefix=r'\\.\pipe\python-pipe-%d-%d-'
    [all...]
  /external/scapy/scapy/
__init__.py 45 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /external/selinux/dbus/
selinux_server.py 11 from subprocess import Popen, PIPE, STDOUT
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/skia/tools/
find_run_binary.py 28 stdout=subprocess.PIPE,
29 stderr=subprocess.PIPE)
  /external/skqp/tools/
find_run_binary.py 28 stdout=subprocess.PIPE,
29 stderr=subprocess.PIPE)
  /external/webrtc/webrtc/tools/barcode_tools/
helper_functions.py 51 process = subprocess.Popen(cmd_list, stdout=subprocess.PIPE,
52 stderr=subprocess.PIPE)
  /external/clang/tools/clang-format/
git-clang-format 256 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
287 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
368 p = subprocess.Popen(cmd, stdin=subprocess.PIPE)
395 git_show = subprocess.Popen(git_show_cmd, stdin=subprocess.PIPE,
396 stdout=subprocess.PIPE)
402 clang_format_stdin = subprocess.PIPE
405 stdout=subprocess.PIPE)
406 if clang_format_stdin == subprocess.PIPE
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3859424/bin/
git-clang-format 256 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
287 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
368 p = subprocess.Popen(cmd, stdin=subprocess.PIPE)
395 git_show = subprocess.Popen(git_show_cmd, stdin=subprocess.PIPE,
396 stdout=subprocess.PIPE)
402 clang_format_stdin = subprocess.PIPE
405 stdout=subprocess.PIPE)
406 if clang_format_stdin == subprocess.PIPE
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3859424/bin/
git-clang-format 256 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
287 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
368 p = subprocess.Popen(cmd, stdin=subprocess.PIPE)
395 git_show = subprocess.Popen(git_show_cmd, stdin=subprocess.PIPE,
396 stdout=subprocess.PIPE)
402 clang_format_stdin = subprocess.PIPE
405 stdout=subprocess.PIPE)
406 if clang_format_stdin == subprocess.PIPE
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
ProcessBuilderTest.java 45 import static java.lang.ProcessBuilder.Redirect.PIPE;
178 .redirectInput(PIPE)
179 .redirectOutput(PIPE);
183 // Check again without specifying PIPE explicitly, since that is the default
202 .redirectError(Redirect.PIPE).start();
335 * Checks that INHERIT and PIPE tend to have different hashCodes
344 assertIdentityHashCode(PIPE);
375 PIPE,
401 assertRedirectFileAndType(null, Type.PIPE, PIPE);
    [all...]
  /external/clang/tools/scan-build-py/tests/functional/cases/
__init__.py 32 kwargs.update({'stdout': subprocess.PIPE, 'stderr': subprocess.STDOUT})
37 kwargs.update({'stdout': subprocess.PIPE, 'stderr': subprocess.STDOUT})
44 stdout=subprocess.PIPE,
  /libcore/ojluni/src/main/java/java/lang/
ProcessImpl.java 98 if (redirects[0] == Redirect.PIPE)
107 if (redirects[1] == Redirect.PIPE)
117 if (redirects[2] == Redirect.PIPE)
  /system/sepolicy/tools/
post_process_mac_perms 45 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE)
  /development/testrunner/
run_command.py 90 output_dest = subprocess.PIPE
95 stdin_dest = subprocess.PIPE
98 pipe = subprocess.Popen(
105 pid.append(pipe.pid)
107 output = pipe.communicate(input=stdin_input)[0]
115 if pipe.returncode:
117 pipe.returncode))
167 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE,
177 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_quopri.py 180 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
191 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  /external/autotest/client/site_tests/security_OpenFDs/
security_OpenFDs.py 103 stdout=subprocess.PIPE)
110 stdin=p1.stdout, stdout=subprocess.PIPE)
112 stdout=subprocess.PIPE)
114 stdout=subprocess.PIPE)
161 r'0[35]00 pipe:.*',
  /external/autotest/client/site_tests/security_RendererSandbox/
security_RendererSandbox.py 23 stdout=subprocess.PIPE)

Completed in 1111 milliseconds

1 23 4 5 6 7 8 91011>>