HomeSort by relevance Sort by last modified time
    Searched refs:PIPE (Results 1 - 25 of 577) 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...]
  /test/vts/utils/python/common/
cmd_utils.py 33 command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
52 str(cmd), shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /toolchain/binutils/binutils-2.25/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) \
  /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)
  /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)
Rsa2048Sha256Sign.py 94 Process = subprocess.Popen('%s version' % (OpenSslCommand), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
150 Process = subprocess.Popen('%s rsa -in "%s" -modulus -noout' % (OpenSslCommand, args.PrivateKeyFileName), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
163 Process = subprocess.Popen('%s sha256 -sign "%s"' % (OpenSslCommand, args.PrivateKeyFileName), stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
207 Process = subprocess.Popen('%s sha256 -prverify "%s" -signature %s' % (OpenSslCommand, args.PrivateKeyFileName, args.OutputFileName), stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
    [all...]
  /external/toolchain-utils/binary_search_tool/sysroot_wrapper/
testing_test.py 30 ret = subprocess.call(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /external/clang/tools/clang-format/
clang-format-sublime.py 45 p = subprocess.Popen(command, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE, stdin=subprocess.PIPE)
  /test/vts/utils/python/controllers/
fastboot.py 16 from subprocess import Popen, PIPE
20 """Executes commands in a new shell. Directing stderr to PIPE.
35 proc = Popen(cmd, stdout=PIPE, stderr=PIPE, shell=True)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_subprocess.py 66 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when
146 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
163 code = ('import sys; from subprocess import Popen, PIPE;'
165 ' stdin=PIPE, stderr=PIPE);'
168 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
178 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_subprocess.py 66 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when
146 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
163 code = ('import sys; from subprocess import Popen, PIPE;'
165 ' stdin=PIPE, stderr=PIPE);'
168 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
178 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_subprocess.py 66 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when
146 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
163 code = ('import sys; from subprocess import Popen, PIPE;'
165 ' stdin=PIPE, stderr=PIPE);'
168 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
178 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_subprocess.py 66 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when
146 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
163 code = ('import sys; from subprocess import Popen, PIPE;'
165 ' stdin=PIPE, stderr=PIPE);'
168 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
178 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_subprocess.py 119 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
131 stdin=subprocess.PIPE, stderr=subprocess.PIPE)
140 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
169 stdin=subprocess.PIPE)
202 stdout=subprocess.PIPE)
231 stderr=subprocess.PIPE)
257 # capture stdout and stderr to the same pipe
    [all...]
  /external/libvpx/libvpx/tools/
lint-hunks.py 80 tl = Subprocess(TOPLEVEL_CMD, stdout=subprocess.PIPE)
96 p = Subprocess(diff_cmd, stdout=subprocess.PIPE)
113 show = Subprocess(show_cmd, stdout=subprocess.PIPE)
115 stdin=show.stdout, stderr=subprocess.PIPE)
120 stdin=subprocess.PIPE, stderr=subprocess.PIPE)
  /external/chromium-trace/catapult/telemetry/telemetry/internal/forwarders/
cros_forwarder.py 37 stdout=subprocess.PIPE,
38 stderr=subprocess.PIPE,
39 stdin=subprocess.PIPE,
  /cts/apps/CameraITS/tools/
turn_off_screen.py 36 process = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE)
  /external/chromium-trace/catapult/common/py_utils/py_utils/
xvfb.py 20 xvfb_command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
  /external/clang/utils/check_cfc/
obj_diff.py 22 stdout=subprocess.PIPE,
23 stderr=subprocess.PIPE)
32 p = subprocess.Popen([disassembler, '-WliaprmfsoRt', objfile], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /external/skia/infra/bots/assets/go/
create.py 19 p1 = subprocess.Popen(["curl", GO_URL], stdout=subprocess.PIPE)
  /external/v8/tools/testrunner/local/
commands.py 68 stdout=subprocess.PIPE,
69 stderr=subprocess.PIPE,
88 stdout=subprocess.PIPE,
89 stderr=subprocess.PIPE,
  /external/webrtc/webrtc/tools/e2e_quality/audio/
run_audio_test.py 56 proc = subprocess.Popen(command, stdout=subprocess.PIPE)
71 retcode = subprocess.call(command, stdout=subprocess.PIPE)
108 retcode = subprocess.call(command, stdout=subprocess.PIPE)
115 proc = subprocess.Popen(command, stdout=subprocess.PIPE)

Completed in 1272 milliseconds

1 2 3 4 5 6 7 8 91011>>