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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
popen2.py 15 __all__ = ["popen2", "popen3", "popen4"]
116 class Popen4(Popen3):
139 del Popen3, Popen4
161 def popen4(cmd, bufsize=-1, mode='t'): function
168 w, r = os.popen4(cmd, mode, bufsize)
191 def popen4(cmd, bufsize=-1, mode='t'): function
198 inst = Popen4(cmd, bufsize)
201 __all__.extend(["Popen3", "Popen4"])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
popen2.py 15 __all__ = ["popen2", "popen3", "popen4"]
116 class Popen4(Popen3):
139 del Popen3, Popen4
161 def popen4(cmd, bufsize=-1, mode='t'): function
168 w, r = os.popen4(cmd, mode, bufsize)
191 def popen4(cmd, bufsize=-1, mode='t'): function
198 inst = Popen4(cmd, bufsize)
201 __all__.extend(["Popen3", "Popen4"])
  /external/protobuf/gtest/test/
gtest_test_utils.py 217 # functionality (Popen4) under Windows. This allows us to support Mac
238 p = popen2.Popen4(command)
  /external/chromium/testing/gtest/test/
gtest_test_utils.py 222 # functionality (Popen4) under Windows. This allows us to support Mac
260 p = popen2.Popen4(command)
  /external/chromium_org/testing/gtest/test/
gtest_test_utils.py 222 # functionality (Popen4) under Windows. This allows us to support Mac
260 p = popen2.Popen4(command)
  /external/gtest/test/
gtest_test_utils.py 222 # functionality (Popen4) under Windows. This allows us to support Mac
260 p = popen2.Popen4(command)
  /ndk/sources/third_party/googletest/googletest/test/
gtest_test_utils.py 222 # functionality (Popen4) under Windows. This allows us to support Mac
260 p = popen2.Popen4(command)
  /external/chromium_org/tools/gyp/test/lib/
TestCmd.py 616 popen2.Popen4
618 # A cribbed Popen4 class, with some retrofitted code from
621 class Popen4(popen2.Popen3):
649 popen2.Popen4 = Popen4
651 class Popen3(popen2.Popen3, popen2.Popen4):
655 apply(popen2.Popen4.__init__, (self, command, 1))
    [all...]

Completed in 1179 milliseconds