Home
last modified time | relevance | path

Searched refs:_shutdown (Results 1 – 19 of 19) sorted by relevance

/external/python/cpython3/Lib/concurrent/futures/
Dthread.py30 _shutdown = False variable
33 global _shutdown
34 _shutdown = True
75 if _shutdown or executor is None or executor._shutdown:
102 self._shutdown = False
108 if self._shutdown:
140 self._shutdown = True
Dprocess.py77 _shutdown = False variable
80 global _shutdown
81 _shutdown = True
247 return _shutdown or executor is None or executor._shutdown_thread
/external/python/futures/concurrent/futures/
Dthread.py38 _shutdown = False variable
41 global _shutdown
42 _shutdown = True
84 if _shutdown or executor is None or executor._shutdown:
116 self._shutdown = False
123 if self._shutdown:
155 self._shutdown = True
Dprocess.py71 _shutdown = False variable
74 global _shutdown
75 _shutdown = True
225 if _shutdown or executor is None or executor._shutdown_thread:
/external/autotest/scheduler/
Dhost_scheduler.py87 _shutdown = False variable
413 global _shutdown
414 _shutdown = True
502 while not _shutdown:
538 global _shutdown
539 _shutdown = True
Dmonitor_db.py72 _shutdown = False variable
185 while not _shutdown:
211 global _shutdown
212 _shutdown = True
227 global _shutdown
228 _shutdown = True
/external/autotest/skylab_migration/venv/skylab_venv/scripts/
Dserver_db_sync.py58 _shutdown = False variable
343 global _shutdown
344 _shutdown = True
401 while not _shutdown:
/external/autotest/site_utils/lxc/container_pool/
Dservice.py266 message.SHUTDOWN: self._shutdown,
288 def _shutdown(self): member in _ClientThread
/external/python/cpython3/Lib/
Dweakref.py518 _shutdown = False variable in finalize
547 if info and not self._shutdown:
630 finalize._shutdown = True
Dthreading.py1279 def _shutdown(): function
/external/jmdns/src/javax/jmdns/impl/
DJmDNSImpl.java298 protected Thread _shutdown; field in JmDNSImpl
1676 _shutdown = null; in run()
1837 if (_shutdown != null) { in close()
1838 Runtime.getRuntime().removeShutdownHook(_shutdown); in close()
/external/python/cpython2/Lib/
Dthreading.py1191 _shutdown = _MainThread()._exitfunc variable
/external/python/cpython3/Python/
Dpylifecycle.c1491 _Py_IDENTIFIER(_shutdown); in wait_for_thread_shutdown()
/external/python/cpython3/Doc/whatsnew/
D2.7.rst2227 :func:`threading._shutdown` function; this prevents some exceptions from
/external/python/cpython2/Doc/whatsnew/
D2.7.rst2203 :func:`threading._shutdown` function; this prevents some exceptions from
/external/llvm/docs/
DProgrammersManual.rst2374 .. _shutdown:
/external/curl/
DCHANGES3625 The _shutdown() function calls the _session_free() function; While this
/external/python/cpython2/Misc/
DNEWS7335 - Issue #1722344: ``threading._shutdown()`` is now called in ``Py_Finalize()``,
10786 - Bug #1566280: Explicitly invoke threading._shutdown from Py_Main, to
/external/python/cpython3/Misc/
DHISTORY12976 - Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which