/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 namespace 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 namespace 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...] |
/external/protobuf/gtest/test/ |
gtest_test_utils.py | 50 import popen2 namespace 215 # In earlier python versions, we revert to the popen2 module, which is 238 p = popen2.Popen4(command) 240 p = popen2.Popen3(command)
|
/external/chromium/testing/gtest/test/ |
gtest_test_utils.py | 50 import popen2 namespace 220 # In earlier python versions, we revert to the popen2 module, which is 260 p = popen2.Popen4(command) 262 p = popen2.Popen3(command)
|
/external/chromium_org/testing/gtest/test/ |
gtest_test_utils.py | 50 import popen2 namespace 220 # In earlier python versions, we revert to the popen2 module, which is 260 p = popen2.Popen4(command) 262 p = popen2.Popen3(command)
|
/external/gtest/test/ |
gtest_test_utils.py | 50 import popen2 namespace 220 # In earlier python versions, we revert to the popen2 module, which is 260 p = popen2.Popen4(command) 262 p = popen2.Popen3(command)
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_test_utils.py | 50 import popen2 namespace 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/chromium_org/tools/gyp/test/lib/ |
TestCmd.py | 590 import popen2 namespace 591 popen2.Popen3 616 popen2.Popen4 621 class Popen4(popen2.Popen3): 633 for i in range(3, popen2.MAXFD): 647 popen2._active.append(self) 649 popen2.Popen4 = Popen4 651 class Popen3(popen2.Popen3, popen2.Popen4): 655 apply(popen2.Popen4.__init__, (self, command, 1) [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
work_unit.py | 175 fin, fout = os.popen2( 'nm %s' % libname )
|
/external/chromium_org/third_party/mesa/src/scons/ |
gallium.py | 100 return int(os.popen2("sysctl -n hw.ncpu")[1].read())
|
/external/mesa3d/scons/ |
gallium.py | 100 return int(os.popen2("sysctl -n hw.ncpu")[1].read())
|