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

1 2

  /external/chromium_org/third_party/jemalloc/chromium/
build-crt.py 4 from subprocess import Popen, STDOUT, PIPE
8 proc = Popen(['nmake', 'dll_', 'mt'], stdout=PIPE, stderr=STDOUT,
  /external/chromium_org/third_party/jemalloc/vendor/
build-crt.py 4 from subprocess import Popen, STDOUT, PIPE
8 proc = Popen(['nmake', 'dll_', 'mt'], stdout=PIPE, stderr=STDOUT,
  /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/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive_mock.py 51 PIPE = "MOCK PIPE"
executive.py 87 PIPE = subprocess.PIPE
100 stdout=self.PIPE,
276 ps_process = self.popen(['ps', '-eo', 'pid,comm'], stdout=self.PIPE, stderr=self.PIPE)
376 return (self.PIPE, input)
410 stdout=self.PIPE,
507 proc = subprocess.Popen(cmd_line, cwd=cwd, stdout=subprocess.PIPE, stderr=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/mesa3d/src/glsl/builtins/tools/
generate_builtins.py 10 from subprocess import Popen, PIPE
75 p = Popen(command, 1, stdout=PIPE, shell=False)
  /external/chromium/chrome/common/extensions/docs/build/
build.py 15 from subprocess import Popen, PIPE
78 stdout=PIPE)
  /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()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tcl.py 7 from subprocess import Popen, PIPE
152 p = Popen(cmd, stdout=PIPE, stderr=PIPE)
regrtest.py 488 from subprocess import Popen, PIPE
512 stdout=PIPE, stderr=PIPE,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tcl.py 7 from subprocess import Popen, PIPE
152 p = Popen(cmd, stdout=PIPE, stderr=PIPE)
regrtest.py 488 from subprocess import Popen, PIPE
512 stdout=PIPE, stderr=PIPE,
    [all...]
  /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/v8/tools/
presubmit.py 46 from subprocess import PIPE
110 process = subprocess.Popen(command, stderr=subprocess.PIPE)
276 stdout=PIPE, cwd=path, shell=True)
  /external/bison/src/
parse-gram.h 106 PIPE = 306,
165 #define PIPE 306
parse-gram.c 265 PIPE = 306,
324 #define PIPE 306
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
subprocess.py 72 Valid values are PIPE, an existing file descriptor (a positive
73 integer), an existing file object, and None. PIPE indicates that a
74 new pipe to the child should be created. With None, no redirection
193 If the stdin argument is PIPE, this attribute is a file object
197 If the stdout argument is PIPE, this attribute is a file object
202 If the stderr argument is PIPE, this attribute is file object that
232 output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0]
235 Replacing shell pipe line
239 p1 = Popen(["dmesg"], stdout=PIPE)
240 p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
subprocess.py 72 Valid values are PIPE, an existing file descriptor (a positive
73 integer), an existing file object, and None. PIPE indicates that a
74 new pipe to the child should be created. With None, no redirection
193 If the stdin argument is PIPE, this attribute is a file object
197 If the stdout argument is PIPE, this attribute is a file object
202 If the stderr argument is PIPE, this attribute is file object that
232 output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0]
235 Replacing shell pipe line
239 p1 = Popen(["dmesg"], stdout=PIPE)
240 p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
    [all...]
  /external/chromium_org/tools/gyp/test/lib/
TestCmd.py 585 subprocess.PIPE = 'PIPE'
625 p2cread, p2cwrite = os.pipe()
626 c2pread, c2pwrite = os.pipe()
678 PIPE = subprocess.PIPE
766 if why[0] == errno.EPIPE: #broken pipe
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
transtst.cpp 92 PIPE =((UChar)0x007C), /*|*/
557 append((UChar)PIPE).
    [all...]
  /external/icu4c/test/intltest/
transtst.cpp 93 PIPE =((UChar)0x007C), /*|*/
558 append((UChar)PIPE).
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.reconciler.dropins_1.1.2.R36x_v20101111-1430.jar 
org.eclipse.equinox.p2.touchpoint.natives_1.0.200.v20100503a.jar 
org.eclipse.equinox.p2.touchpoint.eclipse_2.0.2.R36x_v20100823.jar 

Completed in 1134 milliseconds

1 2