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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/build/android/pylib/
restart_adbd.sh 13 trap '' PIPE
  /external/selinux/policycoreutils/sandbox/
test_sandbox.py 5 from subprocess import Popen, PIPE
28 p1 = Popen(['cat', '/etc/passwd'], stdout=PIPE)
29 p2 = Popen(['sandbox', 'grep', 'root'], stdin=p1.stdout, stdout=PIPE)
36 p = Popen(['sandbox', 'kill', '-HUP', str(pid)], stdout=PIPE, stderr=PIPE)
42 p = Popen(['sandbox', 'ping', '-c 1 ', '127.0.0.1'], stdout=PIPE, stderr=PIPE)
48 p = Popen(['sandbox', 'mkdir', '~/test'], stdout=PIPE, stderr=PIPE)
54 p = Popen(['sandbox', 'ls', '~'], stdout=PIPE, stderr=PIPE
    [all...]
  /external/selinux/policycoreutils/semanage/
test-semanage.py 6 from subprocess import Popen, PIPE
36 p = Popen(['semanage', object, '-E'], stdout=PIPE)
42 p = Popen(['semanage', "export", '-f', '/tmp/out'], stdout=PIPE)
46 p = Popen(["semanage", "export", "-S", "targeted", "-f", "-"], stdout=PIPE)
50 p = Popen(["semanage", "-S", "targeted", "-o", "-"], stdout=PIPE)
54 p = Popen(['semanage', "import", '-f', '/tmp/out'], stdout=PIPE)
58 p = Popen(["semanage", "import", "-S", "targeted", "-f", "/tmp/out"], stdout=PIPE)
62 p = Popen(["semanage", "-S", "targeted", "-i", "/tmp/out"], stdout=PIPE)
71 p = Popen(['semanage', object, '-l'], stdout=PIPE)
80 p = Popen(['semanage', object, '-lC'], stdout=PIPE)
    [all...]
  /external/selinux/policycoreutils/sepolicy/
test_sepolicy.py 5 from subprocess import Popen, PIPE
28 p = Popen(['sepolicy', 'manpage', '-d', 'httpd_t'], stdout=PIPE)
35 p = Popen(['sepolicy', 'manpage', '-a'], stdout=PIPE)
41 p = Popen(['sepolicy', 'network', '-l'], stdout=PIPE)
47 p = Popen(['sepolicy', 'network', '-t', 'http_port_t'], stdout=PIPE)
53 p = Popen(['sepolicy', 'network', '-p', '80'], stdout=PIPE)
59 p = Popen(['sepolicy', 'network', '-d', 'httpd_t'], stdout=PIPE)
65 p = Popen(['sepolicy', 'transition', '-s', 'httpd_t'], stdout=PIPE)
71 p = Popen(['sepolicy', 'transition', '-s', 'httpd_t', '-t', 'sendmail_t'], stdout=PIPE)
77 p = Popen(['sepolicy', 'booleans', '-a'], stdout=PIPE)
    [all...]
  /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/policycoreutils/audit2allow/
test_audit2allow.py 5 from subprocess import Popen, PIPE
28 p = Popen(['sudo', 'sepolgen-ifgen'], stdout=PIPE)
36 p = Popen(['audit2allow', "-i", "test.log"], stdout=PIPE)
44 p = Popen(['audit2why', "-i", "test.log"], stdout=PIPE)
  /external/v8/build/android/buildbot/tests/
bb_run_bot_test.py 29 '--testing'], stdout=subprocess.PIPE, stderr=subprocess.PIPE))
  /external/v8/tools/gyp/test/no-cpp/
gyptest-no-cpp.py 30 proc = subprocess.Popen(['otool', '-L', path], stdout=subprocess.PIPE)
32 proc = subprocess.Popen(['ldd', path], stdout=subprocess.PIPE)
  /external/v8/tools/gyp/test/ios/app-bundle/TestApp/
check_no_signature.py 9 stderr=subprocess.STDOUT, stdout=subprocess.PIPE)
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_update.py 114 cwd=gsutil_dst, stdout=subprocess.PIPE,
115 stderr=subprocess.PIPE)
125 cwd=gsutil_dst, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
134 cwd=gsutil_dst, stdout=subprocess.PIPE,
135 stderr=subprocess.PIPE)
146 cwd=gsutil_dst, stdout=subprocess.PIPE,
147 stderr=subprocess.PIPE, stdin=subprocess.PIPE)
162 cwd=tmpdir_dst, stdout=subprocess.PIPE,
    [all...]
  /external/clang/tools/clang-format/
clang-format-sublime.py 45 p = subprocess.Popen(command, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE, stdin=subprocess.PIPE)
  /tools/test/connectivity/acts/framework/acts/controllers/
fastboot.py 17 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...]
  /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/skia/platform_tools/android/bin/
adb_list_devices.py 34 INFO_FILE], stdout=subprocess.PIPE)
92 if subprocess.Popen([adb, 'version'], stdout=subprocess.PIPE).wait() == 0:
97 if subprocess.Popen([adb, 'version'], stdout=subprocess.PIPE).wait() == 0:
103 if subprocess.Popen([adb, 'version'], stdout=subprocess.PIPE).wait() == 0:
112 if subprocess.Popen([adb, 'version'], stdout=subprocess.PIPE).wait() == 0:
133 proc = subprocess.Popen([adb, 'devices'], stdout=subprocess.PIPE)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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 36 stdout=subprocess.PIPE,
37 stderr=subprocess.PIPE,
38 stdin=subprocess.PIPE,
  /cts/apps/CameraITS/tools/
turn_off_screen.py 33 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/v8/tools/gyp/test/ios/xctests/
gyptest-xctests.py 21 '-v'], stdout=subprocess.PIPE)

Completed in 878 milliseconds

1 2 3 4 5 6 7 8 91011>>