Searched refs:_active (Results 1 - 8 of 8) sorted by relevance
/third_party/python/Lib/ |
H A D | threading.py | 121 owner = _active[owner].name 812 _active = {} # maps thread id to Thread object variable 1029 _active[self._ident] = self 1074 del _active[get_ident()] 1410 _active[self._ident] = self 1416 # leave an entry in the _active dict forever after. 1431 _active[self._ident] = self 1454 return _active[get_ident()] 1477 return len(_active) + len(_limbo) 1492 return list(_active [all...] |
H A D | subprocess.py | 257 _active = None variable 266 _active = [] variable 269 if _active is None: 271 for inst in _active[:]: 275 _active.remove(inst) 1131 if self.returncode is None and _active is not None: 1133 _active.append(self)
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | functional.py | 161 self._active = False 180 self._active = True 202 self._active = True 231 while self._active: 247 if not self._active: 258 self._active = False
|
H A D | test_ssl.py | 1627 self._active = False 1646 self._active = True 1670 self._active = True 1699 while self._active: 1715 if not self._active: 1728 self._active = False
|
/third_party/skia/modules/canvaskit/npm_build/ |
H A D | textapi_utils.js | 65 _active: false, 68 return this._active; 73 this._active = true; 82 this._active = false;
|
/third_party/skia/demos.skia.org/demos/textedit/ |
H A D | textapi_utils.js | 68 _active: false, 71 return this._active; 76 this._active = true; 85 this._active = false;
|
/third_party/python/Lib/test/ |
H A D | test_threading.py | 211 del threading._active[ident[0]] 241 # thread to get made in the threading._active map. 251 self.assertIn(tid, threading._active) 252 self.assertIsInstance(threading._active[tid], threading._DummyThread) 254 self.assertTrue(threading._active[tid].is_alive()) 255 self.assertRegex(repr(threading._active[tid]), '_DummyThread') 256 del threading._active[tid]
|
H A D | test_subprocess.py | 92 # subprocess._active is not used on Windows and is set to None. 93 for inst in subprocess._active: 97 subprocess._active, "subprocess._active not empty" 3057 # process exited, it wouldn't be added to subprocess._active, and would 3073 # subprocess._active is not used on Windows and is set to None. 3074 self.assertIsNone(subprocess._active) 3077 self.assertIn(ident, [id(o) for o in subprocess._active]) 3082 # be removed from subprocess._active, which triggered a FD and memory 3100 # subprocess._active i [all...] |
Completed in 15 milliseconds