Searched refs:_active (Results 1 - 25 of 31) sorted by relevance

12

/prebuilts/gdb/darwin-x86/lib/python2.7/test/
H A Dtest_popen2.py46 self.assertFalse(popen2._active, "Active pipes when test starts" +
47 repr([c.cmd for c in popen2._active]))
50 for inst in popen2._active:
53 self.assertFalse(popen2._active, "popen2._active not empty")
56 for inst in subprocess._active:
59 self.assertFalse(subprocess._active, "subprocess._active not empty")
H A Dtest_threading.py119 del threading._active[ident[0]]
151 # thread to get made in the threading._active map.
160 self.assertIn(tid, threading._active)
161 self.assertIsInstance(threading._active[tid], threading._DummyThread)
162 del threading._active[tid]
H A Dtest_subprocess.py48 for inst in subprocess._active:
51 self.assertFalse(subprocess._active, "subprocess._active not empty")
1094 # process exited, it wouldn't be added to subprocess._active, and would
1108 self.assertIn(ident, [id(o) for o in subprocess._active])
1113 # be removed from subprocess._active, which triggered a FD and memory
1128 self.assertIn(ident, [id(o) for o in subprocess._active])
1138 # p should have been wait()ed on, and removed from the _active list
1140 self.assertNotIn(ident, [id(o) for o in subprocess._active])
/prebuilts/gdb/linux-x86/lib/python2.7/test/
H A Dtest_popen2.py46 self.assertFalse(popen2._active, "Active pipes when test starts" +
47 repr([c.cmd for c in popen2._active]))
50 for inst in popen2._active:
53 self.assertFalse(popen2._active, "popen2._active not empty")
56 for inst in subprocess._active:
59 self.assertFalse(subprocess._active, "subprocess._active not empty")
H A Dtest_threading.py119 del threading._active[ident[0]]
151 # thread to get made in the threading._active map.
160 self.assertIn(tid, threading._active)
161 self.assertIsInstance(threading._active[tid], threading._DummyThread)
162 del threading._active[tid]
H A Dtest_subprocess.py48 for inst in subprocess._active:
51 self.assertFalse(subprocess._active, "subprocess._active not empty")
1094 # process exited, it wouldn't be added to subprocess._active, and would
1108 self.assertIn(ident, [id(o) for o in subprocess._active])
1113 # be removed from subprocess._active, which triggered a FD and memory
1128 self.assertIn(ident, [id(o) for o in subprocess._active])
1138 # p should have been wait()ed on, and removed from the _active list
1140 self.assertNotIn(ident, [id(o) for o in subprocess._active])
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_popen2.py46 self.assertFalse(popen2._active, "Active pipes when test starts" +
47 repr([c.cmd for c in popen2._active]))
50 for inst in popen2._active:
53 self.assertFalse(popen2._active, "popen2._active not empty")
56 for inst in subprocess._active:
59 self.assertFalse(subprocess._active, "subprocess._active not empty")
H A Dtest_threading.py119 del threading._active[ident[0]]
151 # thread to get made in the threading._active map.
160 self.assertIn(tid, threading._active)
161 self.assertIsInstance(threading._active[tid], threading._DummyThread)
162 del threading._active[tid]
H A Dtest_subprocess.py48 for inst in subprocess._active:
51 self.assertFalse(subprocess._active, "subprocess._active not empty")
1094 # process exited, it wouldn't be added to subprocess._active, and would
1108 self.assertIn(ident, [id(o) for o in subprocess._active])
1113 # be removed from subprocess._active, which triggered a FD and memory
1128 self.assertIn(ident, [id(o) for o in subprocess._active])
1138 # p should have been wait()ed on, and removed from the _active list
1140 self.assertNotIn(ident, [id(o) for o in subprocess._active])
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_popen2.py46 self.assertFalse(popen2._active, "Active pipes when test starts" +
47 repr([c.cmd for c in popen2._active]))
50 for inst in popen2._active:
53 self.assertFalse(popen2._active, "popen2._active not empty")
56 for inst in subprocess._active:
59 self.assertFalse(subprocess._active, "subprocess._active not empty")
H A Dtest_threading.py119 del threading._active[ident[0]]
151 # thread to get made in the threading._active map.
160 self.assertIn(tid, threading._active)
161 self.assertIsInstance(threading._active[tid], threading._DummyThread)
162 del threading._active[tid]
H A Dtest_subprocess.py48 for inst in subprocess._active:
51 self.assertFalse(subprocess._active, "subprocess._active not empty")
1094 # process exited, it wouldn't be added to subprocess._active, and would
1108 self.assertIn(ident, [id(o) for o in subprocess._active])
1113 # be removed from subprocess._active, which triggered a FD and memory
1128 self.assertIn(ident, [id(o) for o in subprocess._active])
1138 # p should have been wait()ed on, and removed from the _active list
1140 self.assertNotIn(ident, [id(o) for o in subprocess._active])
/prebuilts/gdb/darwin-x86/lib/python2.7/
H A Dpopen2.py22 _active = [] variable
25 for inst in _active[:]:
28 _active.remove(inst)
78 if _active is not None:
80 _active.append(self)
H A Dthreading.py70 name = _active[ident].name
140 owner = _active[owner].name
632 _active = {} # maps thread id to Thread object variable
795 _active[self.__ident] = self
860 del _active[_get_ident()]
883 # len(_active) is always <= 1 here, and any Thread instance created
884 # overwrites the (if any) thread currently registered in _active.
894 # _active if dummy_threading is being used is a red herring. But
900 del _active[_get_ident()]
1093 _active[_get_iden
[all...]
H A Dsubprocess.py458 _active = [] variable
461 for inst in _active[:]:
465 _active.remove(inst)
761 def __del__(self, _maxint=sys.maxint, _active=_active):
770 if self.returncode is None and _active is not None:
772 _active.append(self)
/prebuilts/gdb/linux-x86/lib/python2.7/
H A Dpopen2.py22 _active = [] variable
25 for inst in _active[:]:
28 _active.remove(inst)
78 if _active is not None:
80 _active.append(self)
H A Dthreading.py70 name = _active[ident].name
140 owner = _active[owner].name
632 _active = {} # maps thread id to Thread object variable
795 _active[self.__ident] = self
860 del _active[_get_ident()]
883 # len(_active) is always <= 1 here, and any Thread instance created
884 # overwrites the (if any) thread currently registered in _active.
894 # _active if dummy_threading is being used is a red herring. But
900 del _active[_get_ident()]
1093 _active[_get_iden
[all...]
H A Dsubprocess.py458 _active = [] variable
461 for inst in _active[:]:
465 _active.remove(inst)
761 def __del__(self, _maxint=sys.maxint, _active=_active):
770 if self.returncode is None and _active is not None:
772 _active.append(self)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dpopen2.py22 _active = [] variable
25 for inst in _active[:]:
28 _active.remove(inst)
78 if _active is not None:
80 _active.append(self)
H A Dthreading.py70 name = _active[ident].name
140 owner = _active[owner].name
632 _active = {} # maps thread id to Thread object variable
795 _active[self.__ident] = self
860 del _active[_get_ident()]
883 # len(_active) is always <= 1 here, and any Thread instance created
884 # overwrites the (if any) thread currently registered in _active.
894 # _active if dummy_threading is being used is a red herring. But
900 del _active[_get_ident()]
1093 _active[_get_iden
[all...]
H A Dsubprocess.py458 _active = [] variable
461 for inst in _active[:]:
465 _active.remove(inst)
761 def __del__(self, _maxint=sys.maxint, _active=_active):
770 if self.returncode is None and _active is not None:
772 _active.append(self)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dpopen2.py22 _active = [] variable
25 for inst in _active[:]:
28 _active.remove(inst)
78 if _active is not None:
80 _active.append(self)
H A Dthreading.py70 name = _active[ident].name
140 owner = _active[owner].name
632 _active = {} # maps thread id to Thread object variable
795 _active[self.__ident] = self
860 del _active[_get_ident()]
883 # len(_active) is always <= 1 here, and any Thread instance created
884 # overwrites the (if any) thread currently registered in _active.
894 # _active if dummy_threading is being used is a red herring. But
900 del _active[_get_ident()]
1093 _active[_get_iden
[all...]
H A Dsubprocess.py458 _active = [] variable
461 for inst in _active[:]:
465 _active.remove(inst)
761 def __del__(self, _maxint=sys.maxint, _active=_active):
770 if self.returncode is None and _active is not None:
772 _active.append(self)
/prebuilts/tools/common/m2/repository/xalan/xalan/2.6.0/
H A Dxalan-2.6.0.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/runtime/ META-INF/services/ org/ org/apache/ ...

Completed in 280 milliseconds

12