HomeSort by relevance Sort by last modified time
    Searched refs:PIPE (Results 201 - 225 of 354) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
bisect_test_ordering.py 150 output = self.executive.popen([path_to_run_webkit_tests, '--child-processes', '1', '--order', 'none', '--no-retry', '--no-show-results', '--verbose'] + extra_args + tests, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /external/chromium_org/third_party/libjingle/source/talk/site_scons/site_tools/
talk_linux.py 13 process = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE)
222 process = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE)
  /external/chromium_org/third_party/mesa/src/src/glsl/builtins/tools/
generate_builtins.py 10 from subprocess import Popen, PIPE
75 p = Popen(command, 1, stdout=PIPE, shell=False)
  /external/chromium_org/third_party/mesa/src/src/mesa/
SConscript 460 (commit, foo) = subprocess.Popen(args, stdout=subprocess.PIPE).communicate()
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
work_unit.py 171 from subprocess import Popen, PIPE
172 p = Popen(['nm', libname], bufsize=1, stdout=PIPE)
  /external/chromium_org/tools/cygprofile/
symbolize.py 78 nm_p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
173 p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
  /external/chromium_org/tools/
nocompile_driver.py 231 process = subprocess.Popen(cmdline, stdout=subprocess.PIPE,
232 stderr=subprocess.PIPE)
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
cros_interface.py 62 p = subprocess.Popen(args=args, cwd=cwd, stdout=subprocess.PIPE,
63 stderr=subprocess.PIPE, stdin=devnull)
android_browser_backend.py 390 p = subprocess.Popen([stack], stdin=subprocess.PIPE,
391 stdout=subprocess.PIPE)
401 stdout=subprocess.PIPE).communicate()[0])
cros_browser_backend.py 454 stdout=subprocess.PIPE,
455 stderr=subprocess.PIPE,
456 stdin=subprocess.PIPE,
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
perf_profiler.py 176 stdout=subprocess.PIPE).wait()
203 stdout=subprocess.PIPE, stderr=open(os.devnull, 'w')).communicate()[0]
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
win_platform_backend.py 108 subprocess.Popen(cmd, stdout=subprocess.PIPE,
117 stdout=subprocess.PIPE).communicate()[0].splitlines()[3:]
  /external/chromium_org/tools/valgrind/
test_suppressions.py 55 pipe = subprocess.Popen(args, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
56 stdout, _ = pipe.communicate(input='\n'.join(names))
  /external/clang/utils/
CmpDriver 113 stdout=subprocess.PIPE,
114 stderr=subprocess.PIPE)
  /external/gtest/test/
gtest_test_utils.py 228 stderr = subprocess.PIPE
231 stdout=subprocess.PIPE, stderr=stderr,
  /external/mesa3d/src/glsl/builtins/tools/
generate_builtins.py 10 from subprocess import Popen, PIPE
75 p = Popen(command, 1, stdout=PIPE, shell=False)
  /external/mesa3d/src/mesa/
SConscript 460 (commit, foo) = subprocess.Popen(args, stdout=subprocess.PIPE).communicate()
  /frameworks/base/packages/Keyguard/scripts/
new_merge.py 11 from subprocess import PIPE
96 pipe = Popen(['git', 'diff', '--name-only', argv[1]], stdout=PIPE).stdout
97 for line in iter(pipe.readline,''):
102 pipe.close()
  /ndk/sources/third_party/googletest/googletest/test/
gtest_test_utils.py 228 stderr = subprocess.PIPE
231 stdout=subprocess.PIPE, stderr=stderr,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_hash.py 160 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
161 stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
test_tools.py 50 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_hash.py 160 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
161 stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
test_tools.py 50 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
  /external/chromium_org/v8/tools/
presubmit.py 46 from subprocess import PIPE
110 process = subprocess.Popen(command, stderr=subprocess.PIPE)
293 stdout=PIPE, cwd=path, shell=True)
  /external/chromium_org/build/
landmines.py 122 stdout=subprocess.PIPE)

Completed in 793 milliseconds

1 2 3 4 5 6 7 891011>>