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

1 2

  /system/core/libacc/tests/
accarm 11 proc = subprocess.Popen(["acc"] + 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)
test.py 36 proc = subprocess.Popen(["acc"] + args, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
41 proc = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
96 proc = subprocess.Popen(["adb", "shell", "/system/bin/acc"] + args, stdout=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 69 (adb_output, adb_error) = subprocess.Popen(run_load_test_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
101 stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
chromium_win.py 110 stdout=subprocess.PIPE,
111 stderr=subprocess.PIPE)
151 stdout=subprocess.PIPE,
152 stderr=subprocess.PIPE).wait()
154 stdout=subprocess.PIPE,
155 stderr=subprocess.PIPE).wait()
chromium.py 116 stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None)
182 self._proc = subprocess.Popen(cmd, stdin=subprocess.PIPE,
183 stdout=subprocess.PIPE,
chromium_mac.py 59 stdout=subprocess.PIPE).stdout.read())
  /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)
android_build.py 64 config = subprocess.Popen(command, stdout=subprocess.PIPE,
  /external/v8/tools/
run-valgrind.py 48 process = subprocess.Popen(command, stderr=subprocess.PIPE)
linux-tick-processor.py 42 stdout=subprocess.PIPE,
44 pipe = process.stdout
46 for line in pipe:
54 pipe.close()
  /external/bison/src/
parse-gram.h 85 PIPE = 300,
138 #define PIPE 300
  /external/webkit/WebKitTools/Scripts/webkitpy/
executive.py 84 stdout=subprocess.PIPE,
149 stdin = subprocess.PIPE if input else None
158 stdout=subprocess.PIPE,
user.py 51 child_process = subprocess.Popen([pager], stdin=subprocess.PIPE)
  /external/webkit/WebCore/WebCore.gyp/scripts/
action_maketokenizer.py 89 p1 = subprocess.Popen(['flex', '-t', flexInput], stdout=subprocess.PIPE)
  /external/protobuf/gtest/test/
gtest_test_utils.py 223 stderr = subprocess.PIPE
226 stdout=subprocess.PIPE, stderr=stderr,
  /development/scripts/
add-accounts 35 proc = subprocess.Popen(args, stdout=subprocess.PIPE)
add-accounts-sdk 35 proc = subprocess.Popen(args, stdout=subprocess.PIPE)
  /external/chromium/third_party/icu/source/test/perf/perldriver/
PerfFramework.pm 260 open(PIPE, "$cmd|") or die "Can't run \"$cmd\"";
262 while (<PIPE>) {
265 close(PIPE) or die "Program failed: \"$cmd\"";
  /external/icu4c/test/perf/perldriver/
PerfFramework.pm 260 open(PIPE, "$cmd|") or die "Can't run \"$cmd\"";
262 while (<PIPE>) {
265 close(PIPE) or die "Program failed: \"$cmd\"";
  /build/tools/releasetools/
check_target_files_signatures 93 stdin=subprocess.PIPE,
94 stdout=subprocess.PIPE)
167 stdin=subprocess.PIPE,
168 stdout=subprocess.PIPE)
215 stdout=subprocess.PIPE)
  /external/gtest/test/
gtest_test_utils.py 153 stdout=subprocess.PIPE, stderr=subprocess.STDOUT,

Completed in 1532 milliseconds

1 2