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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_popen2.py 2 """Test script for popen2.py"""
5 warnings.filterwarnings("ignore", ".*popen2 module is deprecated.*",
13 import popen2
21 raise unittest.SkipTest("popen2() doesn't work on " + sys.platform)
44 popen2._cleanup()
46 self.assertFalse(popen2._active, "Active pipes when test starts" +
47 repr([c.cmd for c in popen2._active]))
50 for inst in popen2._active:
52 popen2._cleanup()
53 self.assertFalse(popen2._active, "popen2._active not empty")
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_popen2.py 2 """Test script for popen2.py"""
5 warnings.filterwarnings("ignore", ".*popen2 module is deprecated.*",
13 import popen2
21 raise unittest.SkipTest("popen2() doesn't work on " + sys.platform)
44 popen2._cleanup()
46 self.assertFalse(popen2._active, "Active pipes when test starts" +
47 repr([c.cmd for c in popen2._active]))
50 for inst in popen2._active:
52 popen2._cleanup()
53 self.assertFalse(popen2._active, "popen2._active not empty"
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_popen2.py 2 """Test script for popen2.py"""
5 warnings.filterwarnings("ignore", ".*popen2 module is deprecated.*",
13 import popen2
21 raise unittest.SkipTest("popen2() doesn't work on " + sys.platform)
44 popen2._cleanup()
46 self.assertFalse(popen2._active, "Active pipes when test starts" +
47 repr([c.cmd for c in popen2._active]))
50 for inst in popen2._active:
52 popen2._cleanup()
53 self.assertFalse(popen2._active, "popen2._active not empty"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_popen2.py 2 """Test script for popen2.py"""
5 warnings.filterwarnings("ignore", ".*popen2 module is deprecated.*",
13 import popen2
21 raise unittest.SkipTest("popen2() doesn't work on " + sys.platform)
44 popen2._cleanup()
46 self.assertFalse(popen2._active, "Active pipes when test starts" +
47 repr([c.cmd for c in popen2._active]))
50 for inst in popen2._active:
52 popen2._cleanup()
53 self.assertFalse(popen2._active, "popen2._active not empty"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_popen2.py 2 """Test script for popen2.py"""
5 warnings.filterwarnings("ignore", ".*popen2 module is deprecated.*",
13 import popen2
21 raise unittest.SkipTest("popen2() doesn't work on " + sys.platform)
44 popen2._cleanup()
46 self.assertFalse(popen2._active, "Active pipes when test starts" +
47 repr([c.cmd for c in popen2._active]))
50 for inst in popen2._active:
52 popen2._cleanup()
53 self.assertFalse(popen2._active, "popen2._active not empty"
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
popen2.py 5 whether mode is 'r' or 'w'. This module provides the functions popen2(cmd)
12 warnings.warn("The popen2 module is deprecated. Use the subprocess module.",
15 __all__ = ["popen2", "popen3", "popen4"]
36 internally by the functions popen2() and popen3()."""
141 def popen2(cmd, bufsize=-1, mode='t'): function
148 w, r = os.popen2(cmd, mode, bufsize)
171 def popen2(cmd, bufsize=-1, mode='t'): function
os.py 653 # Supply popen2 etc. (for Unix)
655 if not _exists("popen2"):
656 def popen2(cmd, mode="t", bufsize=-1): function in function:.spawnlpe
664 msg = "os.popen2 is deprecated. Use the subprocess module."
673 __all__.append("popen2")
  /external/google-breakpad/src/testing/gtest/test/
gtest_test_utils.py 50 import popen2
220 # In earlier python versions, we revert to the popen2 module, which is
260 p = popen2.Popen4(command)
262 p = popen2.Popen3(command)
  /external/googletest/googletest/test/
gtest_test_utils.py 50 import popen2
235 # In earlier python versions, we revert to the popen2 module, which is
275 p = popen2.Popen4(command)
277 p = popen2.Popen3(command)
  /external/protobuf/gtest/test/
gtest_test_utils.py 50 import popen2
224 # In earlier python versions, we revert to the popen2 module, which is
264 p = popen2.Popen4(command)
266 p = popen2.Popen3(command)
  /external/v8/testing/gtest/test/
gtest_test_utils.py 50 import popen2
235 # In earlier python versions, we revert to the popen2 module, which is
275 p = popen2.Popen4(command)
277 p = popen2.Popen3(command)
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_test_utils.py 50 import popen2
235 # In earlier python versions, we revert to the popen2 module, which is
275 p = popen2.Popen4(command)
277 p = popen2.Popen3(command)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
popen2.py 5 whether mode is 'r' or 'w'. This module provides the functions popen2(cmd)
12 warnings.warn("The popen2 module is deprecated. Use the subprocess module.",
15 __all__ = ["popen2", "popen3", "popen4"]
36 internally by the functions popen2() and popen3()."""
141 def popen2(cmd, bufsize=-1, mode='t'): function
148 w, r = os.popen2(cmd, mode, bufsize)
171 def popen2(cmd, bufsize=-1, mode='t'): function
os.py 653 # Supply popen2 etc. (for Unix)
655 if not _exists("popen2"):
656 def popen2(cmd, mode="t", bufsize=-1): function in function:.spawnlpe
664 msg = "os.popen2 is deprecated. Use the subprocess module."
673 __all__.append("popen2")
  /prebuilts/gdb/linux-x86/lib/python2.7/
popen2.py 5 whether mode is 'r' or 'w'. This module provides the functions popen2(cmd)
12 warnings.warn("The popen2 module is deprecated. Use the subprocess module.",
15 __all__ = ["popen2", "popen3", "popen4"]
36 internally by the functions popen2() and popen3()."""
141 def popen2(cmd, bufsize=-1, mode='t'): function
148 w, r = os.popen2(cmd, mode, bufsize)
171 def popen2(cmd, bufsize=-1, mode='t'): function
os.py 653 # Supply popen2 etc. (for Unix)
655 if not _exists("popen2"):
656 def popen2(cmd, mode="t", bufsize=-1): function in function:.spawnlpe
664 msg = "os.popen2 is deprecated. Use the subprocess module."
673 __all__.append("popen2")
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/test/
gtest_test_utils.py 50 import popen2
220 # In earlier python versions, we revert to the popen2 module, which is
260 p = popen2.Popen4(command)
262 p = popen2.Popen3(command)
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/test/
gtest_test_utils.py 50 import popen2
220 # In earlier python versions, we revert to the popen2 module, which is
260 p = popen2.Popen4(command)
262 p = popen2.Popen3(command)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
popen2.py 5 whether mode is 'r' or 'w'. This module provides the functions popen2(cmd)
12 warnings.warn("The popen2 module is deprecated. Use the subprocess module.",
15 __all__ = ["popen2", "popen3", "popen4"]
36 internally by the functions popen2() and popen3()."""
141 def popen2(cmd, bufsize=-1, mode='t'): function
148 w, r = os.popen2(cmd, mode, bufsize)
171 def popen2(cmd, bufsize=-1, mode='t'): function
os.py 653 # Supply popen2 etc. (for Unix)
655 if not _exists("popen2"):
656 def popen2(cmd, mode="t", bufsize=-1): function in function:.spawnlpe
664 msg = "os.popen2 is deprecated. Use the subprocess module."
673 __all__.append("popen2")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
popen2.py 5 whether mode is 'r' or 'w'. This module provides the functions popen2(cmd)
12 warnings.warn("The popen2 module is deprecated. Use the subprocess module.",
15 __all__ = ["popen2", "popen3", "popen4"]
36 internally by the functions popen2() and popen3()."""
141 def popen2(cmd, bufsize=-1, mode='t'): function
148 w, r = os.popen2(cmd, mode, bufsize)
171 def popen2(cmd, bufsize=-1, mode='t'): function
os.py 653 # Supply popen2 etc. (for Unix)
655 if not _exists("popen2"):
656 def popen2(cmd, mode="t", bufsize=-1): function in function:.spawnlpe
664 msg = "os.popen2 is deprecated. Use the subprocess module."
673 __all__.append("popen2")
  /external/mesa3d/scons/
gallium.py 100 return int(os.popen2("sysctl -n hw.ncpu")[1].read())
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
os.py 667 # Supply popen2 etc. (for Unix)
669 if not _exists("popen2"):
670 def popen2(cmd, mode="t", bufsize=-1): function in function:.spawnlpe
678 msg = "os.popen2 is deprecated. Use the subprocess module."
687 __all__.append("popen2")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
os.py 682 # Supply popen2 etc. (for Unix)
684 if not _exists("popen2"):
685 def popen2(cmd, mode="t", bufsize=-1): function in function:.spawnlpe
693 msg = "os.popen2 is deprecated. Use the subprocess module."
702 __all__.append("popen2")

Completed in 732 milliseconds