HomeSort by relevance Sort by last modified time
    Searched full:popen4 (Results 1 - 17 of 17) 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"])
os.py 695 if not _exists("popen4"):
696 def popen4(cmd, mode="t", bufsize=-1): function in function:.spawnlpe
704 msg = "os.popen4 is deprecated. Use the subprocess module."
713 __all__.append("popen4")
subprocess.py 329 (child_stdin, child_stdout_and_stderr) = os.popen4("cmd", mode,
336 On Unix, os.popen2, os.popen3 and os.popen4 also accept a sequence as
381 The popen2.Popen3 and popen2.Popen4 basically works as subprocess.Popen,
    [all...]
  /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"])
os.py 695 if not _exists("popen4"):
696 def popen4(cmd, mode="t", bufsize=-1): function in function:.spawnlpe
704 msg = "os.popen4 is deprecated. Use the subprocess module."
713 __all__.append("popen4")
subprocess.py 329 (child_stdin, child_stdout_and_stderr) = os.popen4("cmd", mode,
336 On Unix, os.popen2, os.popen3 and os.popen4 also accept a sequence as
381 The popen2.Popen3 and popen2.Popen4 basically works as subprocess.Popen,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_popen2.py 115 w, r = os.popen4([self.cmd])
118 w, r = os.popen4(["echo", self.teststr])
122 w, r = os.popen4(self.cmd)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_popen2.py 115 w, r = os.popen4([self.cmd])
118 w, r = os.popen4(["echo", self.teststr])
122 w, r = os.popen4(self.cmd)
  /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)
  /external/protobuf/gtest/test/
gtest_test_utils.py 217 # functionality (Popen4) under Windows. This allows us to support Mac
238 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...]
  /external/chromium-trace/trace-viewer/third_party/python_gflags/
gflags2man.py 204 (child_stdin, child_stdout_and_stderr) = os.popen4(
  /external/chromium_org/third_party/python_gflags/
gflags2man.py 204 (child_stdin, child_stdout_and_stderr) = os.popen4(
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
bundlebuilder.py 620 inf, outf = os.popen4("%s -S \"%s\"" %
    [all...]

Completed in 183 milliseconds