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

  /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...]
  /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...]
  /external/protobuf/gtest/test/
gtest_test_utils.py 240 p = popen2.Popen3(command)
  /external/chromium/testing/gtest/test/
gtest_test_utils.py 262 p = popen2.Popen3(command)
  /external/chromium_org/testing/gtest/test/
gtest_test_utils.py 262 p = popen2.Popen3(command)
  /external/gtest/test/
gtest_test_utils.py 262 p = popen2.Popen3(command)
  /ndk/sources/third_party/googletest/googletest/test/
gtest_test_utils.py 262 p = popen2.Popen3(command)
  /external/chromium_org/tools/gyp/test/lib/
TestCmd.py 591 popen2.Popen3
593 class Popen3:
598 (stdin, stdout, stderr) = os.popen3(' ' + command)
619 # the Python 1.5 Popen3 class methods to do certain things
621 class Popen4(popen2.Popen3):
651 class Popen3(popen2.Popen3, popen2.Popen4):
657 apply(popen2.Popen3.__init__, (self, command, 1))
662 resultcode = apply(popen2.Popen3.wait, (self,)+args, kw)
670 subprocess.Popen = Popen3
    [all...]

Completed in 536 milliseconds