/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_popen2.py | 79 r, w, e = popen2.popen3([self.cmd]) 82 r, w, e = popen2.popen3(self.cmd) 101 w, r, e = os.popen3([self.cmd]) 104 w, r, e = os.popen3(["echo", self.teststr]) 110 w, r, e = os.popen3(self.cmd)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_popen2.py | 79 r, w, e = popen2.popen3([self.cmd]) 82 r, w, e = popen2.popen3(self.cmd) 101 w, r, e = os.popen3([self.cmd]) 104 w, r, e = os.popen3(["echo", self.teststr]) 110 w, r, e = os.popen3(self.cmd)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
popen2.py | 6 and popen3(cmd) which return two or three pipes to the spawned command. 15 __all__ = ["popen2", "popen3", "popen4"] 34 class Popen3: 36 internally by the functions popen2() and popen3().""" 116 class Popen4(Popen3): 139 del Popen3, Popen4 151 def popen3(cmd, bufsize=-1, mode='t'): function 158 w, r, e = os.popen3(cmd, mode, bufsize) 178 inst = Popen3(cmd, False, bufsize) 181 def popen3(cmd, bufsize=-1, mode='t') function [all...] |
os.py | 675 if not _exists("popen3"): 676 def popen3(cmd, mode="t", bufsize=-1): function in function:.spawnlpe 684 msg = "os.popen3 is deprecated. Use the subprocess module." 693 __all__.append("popen3")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
popen2.py | 6 and popen3(cmd) which return two or three pipes to the spawned command. 15 __all__ = ["popen2", "popen3", "popen4"] 34 class Popen3: 36 internally by the functions popen2() and popen3().""" 116 class Popen4(Popen3): 139 del Popen3, Popen4 151 def popen3(cmd, bufsize=-1, mode='t'): function 158 w, r, e = os.popen3(cmd, mode, bufsize) 178 inst = Popen3(cmd, False, bufsize) 181 def popen3(cmd, bufsize=-1, mode='t') function [all...] |
os.py | 675 if not _exists("popen3"): 676 def popen3(cmd, mode="t", bufsize=-1): function in function:.spawnlpe 684 msg = "os.popen3 is deprecated. Use the subprocess module." 693 __all__.append("popen3")
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/ |
util.py | 130 """Wrap popen3 to support #!-script on Windows. 137 __orig_popen3 = os.popen3 146 os.popen3 = __wrap_popen3
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/ |
util.py | 125 """Wrap popen3 to support #!-script on Windows. 132 __orig_popen3 = os.popen3 141 os.popen3 = __wrap_popen3
|
/external/chromium_org/third_party/libxml/src/ |
regressions.py | 153 pin, pout, perr = os.popen3(cmd)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/ |
PrettyPatch.rb | 731 stdin, stdout, stderr = *Open3.popen3(cmd)
|