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

1 2 3 4 5 6 7 8 91011>>

  /external/selinux/sandbox/
test_sandbox.py 6 from subprocess import Popen, PIPE
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, stderr=PIPE
    [all...]
  /external/selinux/python/semanage/
test-semanage.py 3 from subprocess import Popen, PIPE
33 p = Popen(['semanage', object, '-E'], stdout=PIPE)
39 p = Popen(['semanage', "export", '-f', '/tmp/out'], stdout=PIPE)
43 p = Popen(["semanage", "export", "-S", "targeted", "-f", "-"], stdout=PIPE)
47 p = Popen(["semanage", "-S", "targeted", "-o", "-"], stdout=PIPE)
51 p = Popen(['semanage', "import", '-f', '/tmp/out'], stdout=PIPE)
55 p = Popen(["semanage", "import", "-S", "targeted", "-f", "/tmp/out"], stdout=PIPE)
59 p = Popen(["semanage", "-S", "targeted", "-i", "/tmp/out"], stdout=PIPE)
68 p = Popen(['semanage', object, '-l'], stdout=PIPE)
77 p = Popen(['semanage', object, '-lC'], stdout=PIPE)
    [all...]
  /external/selinux/python/sepolicy/
test_sepolicy.py 5 from subprocess import Popen, PIPE
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...]
  /toolchain/binutils/binutils-2.27/opcodes/
spu-opc.c 36 #define APUOP(TAG,MACFORMAT,OPCODE,MNEMONIC,ASMFORMAT,DEP,PIPE) \
38 #define APUOPFB(TAG,MACFORMAT,OPCODE,FB,MNEMONIC,ASMFORMAT,DEP,PIPE) \
  /development/gsi/gsi_util/gsi_util/utils/
cmd_utils.py 24 PIPE = subprocess.PIPE
65 assert kwargs.get('stdout') in [None, PIPE]
66 kwargs['stdout'] = PIPE
68 assert kwargs.get('stderr') in [None, PIPE]
69 kwargs['stderr'] = PIPE
  /external/webrtc/webrtc/build/
find_directx_sdk.py 34 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /external/selinux/python/audit2allow/
test_audit2allow.py 5 from subprocess import Popen, PIPE
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/tensorflow/tensorflow/python/platform/
stacktrace_handler_test.py 52 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
56 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Rsa2048Sha256Sign/
Rsa2048Sha256GenerateKeys.py 74 Process = subprocess.Popen('%s version' % (OpenSslCommand), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
101 Process = subprocess.Popen('%s genrsa -out %s 2048' % (OpenSslCommand, Item.name), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
123 Process = subprocess.Popen('%s rsa -in %s -modulus -noout' % (OpenSslCommand, Item), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
135 Process = subprocess.Popen('%s dgst -sha256 -binary' % (OpenSslCommand), stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /external/skia/tools/android/
measure_fps.py 16 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
  /external/skqp/tools/android/
measure_fps.py 16 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
  /external/toolchain-utils/binary_search_tool/sysroot_wrapper/
testing_test.py 30 ret = subprocess.call(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /external/python/cpython2/Lib/test/
test_subprocess.py 60 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when
140 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
157 code = ('import sys; from subprocess import Popen, PIPE;'
159 ' stdin=PIPE, stderr=PIPE);'
162 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
172 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
    [all...]
  /test/vts/utils/python/common/
cmd_utils.py 77 command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
101 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /tools/tradefederation/core/python-lib/tradefed_py/
adb_handler.py 29 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
39 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
  /external/clang/tools/clang-format/
clang-format-sublime.py 45 p = subprocess.Popen(command, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE, stdin=subprocess.PIPE)
  /prebuilts/clang/host/darwin-x86/clang-4393122/share/clang/
clang-format-sublime.py 45 p = subprocess.Popen(command, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE, stdin=subprocess.PIPE)
  /prebuilts/clang/host/darwin-x86/clang-4479392/share/clang/
clang-format-sublime.py 45 p = subprocess.Popen(command, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE, stdin=subprocess.PIPE)
  /prebuilts/clang/host/darwin-x86/clang-4579689/share/clang/
clang-format-sublime.py 45 p = subprocess.Popen(command, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE, stdin=subprocess.PIPE)
  /prebuilts/clang/host/darwin-x86/clang-4630689/share/clang/
clang-format-sublime.py 45 p = subprocess.Popen(command, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE, stdin=subprocess.PIPE)
  /prebuilts/clang/host/darwin-x86/clang-4639204/share/clang/
clang-format-sublime.py 45 p = subprocess.Popen(command, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE, stdin=subprocess.PIPE)
  /prebuilts/clang/host/darwin-x86/clang-4691093/share/clang/
clang-format-sublime.py 45 p = subprocess.Popen(command, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE, stdin=subprocess.PIPE)
  /prebuilts/clang/host/linux-x86/clang-4393122/share/clang/
clang-format-sublime.py 45 p = subprocess.Popen(command, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE, stdin=subprocess.PIPE)
  /prebuilts/clang/host/linux-x86/clang-4479392/share/clang/
clang-format-sublime.py 45 p = subprocess.Popen(command, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE, stdin=subprocess.PIPE)
  /prebuilts/clang/host/linux-x86/clang-4579689/share/clang/
clang-format-sublime.py 45 p = subprocess.Popen(command, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE, stdin=subprocess.PIPE)

Completed in 842 milliseconds

1 2 3 4 5 6 7 8 91011>>