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

1 2 3 4 5

  /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()
  /frameworks/compile/libbcc/tools/build/
gen-build-info.py 37 stdout=subprocess.PIPE,
38 stderr=subprocess.PIPE,
47 stdout=subprocess.PIPE,
48 stderr=subprocess.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/5/platforms/android-9/arch-arm/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /prebuilts/ndk/6/platforms/android-9/arch-arm/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /prebuilts/ndk/8/platforms/android-14/arch-arm/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/sys/
_sigdefs.h 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
  /prebuilts/ndk/8/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/compiler-rt/lib/asan/scripts/
asan_symbolize.py 39 self.pipe = self.open_addr2line()
45 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
48 print >> self.pipe.stdin, offset
49 function_name = self.pipe.stdout.readline().rstrip()
50 file_name = self.pipe.stdout.readline().rstrip()
68 self.pipe = None
82 pipe = subprocess.Popen(cmdline,
83 stdin=subprocess.PIPE,
84 stdout=subprocess.PIPE)
    [all...]
  /external/llvm/utils/lit/lit/
TestRunner.py 32 stdin=subprocess.PIPE,
33 stdout=subprocess.PIPE,
34 stderr=subprocess.PIPE,
72 input = subprocess.PIPE
112 result = subprocess.PIPE
118 result = subprocess.PIPE
136 # If stderr wants to come from stdout, but stdout isn't a pipe, then put
137 # stderr on a pipe and treat it as stdout.
138 if (stderr == subprocess.STDOUT and stdout != subprocess.PIPE):
139 stderr = subprocess.PIPE
    [all...]

Completed in 847 milliseconds

1 2 3 4 5