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

1 2 3 4

  /frameworks/compile/libbcc/tests/
bccarm 11 proc = subprocess.Popen(["bcc"] + args, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
16 proc = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
58 proc = subprocess.Popen(remoteCmdLine, stdout=subprocess.PIPE)
  /external/clang/utils/C++Tests/LLVM-Code-Symbols/
check-symbols 8 p0 = subprocess.Popen(args0, stdin=None, stdout=subprocess.PIPE,
9 stderr=subprocess.PIPE)
10 p1 = subprocess.Popen(args1, stdin=p0.stdout, stdout=subprocess.PIPE,
11 stderr=subprocess.PIPE)
  /frameworks/base/tests/DumpRenderTree/assets/
run_reliability_tests.py 41 shell=True, stdout=subprocess.PIPE,
42 stderr=subprocess.PIPE).communicate()[0]
49 shell=True, stdout=subprocess.PIPE,
50 stderr=subprocess.PIPE).communicate()
155 stdout=subprocess.PIPE,
156 stderr=subprocess.PIPE)
193 stdout=subprocess.PIPE,
194 stderr=subprocess.PIPE).communicate()[0]
201 shell_cmd_str, shell=True, stdout=subprocess.PIPE,
202 stderr=subprocess.PIPE).communicate(
    [all...]
run_layout_tests.py 62 adb_output = subprocess.Popen(shell_cmd_str, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
167 adb_output = subprocess.Popen(generate_test_list_cmd_str, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
205 adb_output = subprocess.Popen(run_layout_test_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
214 shell_cmd_str, shell=True, stdout=subprocess.PIPE,
215 stderr=subprocess.PIPE).communicate()
230 adb_output = subprocess.Popen(run_layout_test_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0
    [all...]
run_page_cycler.py 88 (adb_output, adb_error) = subprocess.Popen(run_load_test_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
120 stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 55 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
74 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
109 stdin=subprocess.PIPE, stdout=subprocess.PIPE,)
symbolize.py 38 readelf_pipe = subprocess.Popen([readelf, "-l", path], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
71 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  /frameworks/compile/libbcc/tools/build/
gen-build-stamp.py 22 stdout=subprocess.PIPE,
23 stderr=subprocess.PIPE,
32 stdout=subprocess.PIPE,
33 stderr=subprocess.PIPE,
  /bionic/libc/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /development/ndk/platforms/android-9/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken 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)
  /external/chromium/build/
compiler_version.py 22 pipe = subprocess.Popen(compiler, stdout=subprocess.PIPE, shell=True)
23 gcc_output = pipe.communicate()[0]
  /external/v8/tools/
run-valgrind.py 48 process = subprocess.Popen(command, stderr=subprocess.PIPE)
  /prebuilts/ndk/android-ndk-r5/platforms/android-9/arch-arm/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /prebuilts/ndk/android-ndk-r6/platforms/android-9/arch-arm/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /prebuilts/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-arm/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /external/bison/src/
parse-gram.h 85 PIPE = 300,
138 #define PIPE 300
  /development/scripts/
symbol.py 25 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True).stdout
171 child = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
237 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE).stdout
276 process = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  /external/llvm/utils/lit/lit/
TestRunner.py 78 stdin=subprocess.PIPE,
79 stdout=subprocess.PIPE,
80 stderr=subprocess.PIPE,
118 input = subprocess.PIPE
158 result = subprocess.PIPE
164 result = subprocess.PIPE
183 # If stderr wants to come from stdout, but stdout isn't a pipe, then put
184 # stderr on a pipe and treat it as stdout.
185 if (stderr == subprocess.STDOUT and stdout != subprocess.PIPE):
186 stderr = subprocess.PIPE
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/system/
path.py 87 stdin=subprocess.PIPE,
88 stdout=subprocess.PIPE)
  /frameworks/base/tests/DumpRenderTree2/assets/
run_layout_tests.py 46 (stdoutdata, stderrdata) = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()

Completed in 630 milliseconds

1 2 3 4