HomeSort by relevance Sort by last modified time
    Searched refs:popen3 (Results 1 - 21 of 21) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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)
  /external/python/cpython2/Lib/test/
test_popen2.py 78 r, w, e = popen2.popen3([self.cmd])
81 r, w, e = popen2.popen3(self.cmd)
100 w, r, e = os.popen3([self.cmd])
103 w, r, e = os.popen3(["echo", self.teststr])
109 w, r, e = os.popen3(self.cmd)
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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/python/cpython2/Lib/
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 677 if not _exists("popen3"):
678 def popen3(cmd, mode="t", bufsize=-1): function in function:.spawnlpe
686 msg = "os.popen3 is deprecated. Use the subprocess module."
695 __all__.append("popen3")
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/libxml2/
regressions.py 153 pin, pout, perr = os.popen3(cmd)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
os.py 689 if not _exists("popen3"):
690 def popen3(cmd, mode="t", bufsize=-1): function in function:.spawnlpe
698 msg = "os.popen3 is deprecated. Use the subprocess module."
707 __all__.append("popen3")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
os.py 704 if not _exists("popen3"):
705 def popen3(cmd, mode="t", bufsize=-1): function in function:.spawnlpe
713 msg = "os.popen3 is deprecated. Use the subprocess module."
722 __all__.append("popen3")

Completed in 425 milliseconds