/third_party/python/Lib/test/support/ |
D | threading_helper.py | 112 if thread.is_alive(): 142 started = [t for t in started if t.is_alive()] 149 started = [t for t in started if t.is_alive()]
|
/third_party/gstreamer/gstplugins_bad/ext/dtls/ |
D | gstdtlsconnection.c | 88 gboolean is_alive; member 195 priv->is_alive = TRUE; in gst_dtls_connection_init() 342 priv->is_alive = TRUE; in gst_dtls_connection_start() 399 if (priv->is_alive) { in handle_timeout() 403 priv->is_alive); in handle_timeout() 428 if (self->priv->is_alive && !self->priv->timeout_pending) { in schedule_timeout_handling() 476 if (self->priv->is_alive && !self->priv->timeout_pending) { in gst_dtls_connection_check_timeout_locked() 521 self->priv->is_alive = FALSE; in gst_dtls_connection_stop() 557 if (self->priv->is_alive) { in gst_dtls_connection_close() 558 self->priv->is_alive = FALSE; in gst_dtls_connection_close() [all …]
|
/third_party/python/Lib/multiprocessing/dummy/ |
D | __init__.py | 55 if self._start_called and not self.is_alive(): 71 if not p.is_alive():
|
/third_party/python/Lib/test/test_importlib/ |
D | threaded_import_hangers.py | 42 if t.is_alive():
|
/third_party/python/Lib/ |
D | threading.py | 878 def _reset_internal_locks(self, is_alive): argument 882 if is_alive: 900 self.is_alive() # easy way to get ._is_stopped set when appropriate 1162 def is_alive(self): member in Thread 1413 def is_alive(self): member in _DummyThread
|
D | socketserver.py | 650 self[:] = (thread for thread in self if thread.is_alive())
|
D | subprocess.py | 1524 if self.stdout_thread.is_alive(): 1528 if self.stderr_thread.is_alive():
|
/third_party/python/Lib/test/ |
D | test_poll.py | 222 self.assertTrue(poll_thread.is_alive()) 227 self.assertFalse(poll_thread.is_alive())
|
D | test_threading.py | 162 self.assertFalse(t.is_alive()) 226 self.assertTrue(threading._active[tid].is_alive()) 578 os._exit(11 if t.is_alive() else 10) 727 self.assertTrue(t.is_alive()) 739 self.assertTrue(t.is_alive()) 742 self.assertFalse(t.is_alive())
|
D | _test_multiprocessing.py | 243 self.assertTrue(current.is_alive()) 326 wconn.send("alive" if parent_process().is_alive() else "not alive") 328 wconn.send("alive" if parent_process().is_alive() else "not alive") 344 self.assertEqual(p.is_alive(), False) 353 self.assertEqual(p.is_alive(), True) 366 self.assertEqual(p.is_alive(), False) 408 self.assertEqual(p.is_alive(), True) 416 self.assertEqual(p.is_alive(), True) 420 self.assertEqual(p.is_alive(), True) 444 self.assertEqual(p.is_alive(), False) [all …]
|
/third_party/python/Lib/test/libregrtest/ |
D | runtest_mp.py | 147 if self.is_alive(): 338 if not self.is_alive(): 403 while any(worker.is_alive() for worker in self.workers):
|
/third_party/python/Lib/multiprocessing/ |
D | process.py | 153 def is_alive(self): member in BaseProcess 370 def is_alive(self): member in _ParentProcess
|
D | resource_sharer.py | 100 if self._thread.is_alive():
|
D | managers.py | 619 if not self._process.is_alive(): 663 if process.is_alive(): 675 if process.is_alive(): 681 if process.is_alive():
|
D | pool.py | 673 while task_handler.is_alive() and inqueue._reader.poll(): 694 if (not result_handler.is_alive()) and (len(cache) != 0): 726 if p.is_alive():
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
D | exception_safety_testing.h | 111 bool is_alive; member 132 if (tracked_address.is_alive) { in ~ConstructorTracker() 144 if (tracked_address.is_alive) { in ObjectConstructed() 162 if (!tracked_address.is_alive) { in ObjectDestructed() 167 tracked_address.is_alive = false; in ObjectDestructed()
|
/third_party/curl/lib/ |
D | cfilters.c | 109 cf->next->cft->is_alive(cf->next, data, input_pending) : in Curl_cf_def_conn_is_alive() 626 cf->cft->is_alive(cf, data, input_pending); in Curl_conn_is_alive()
|
D | cfilters.h | 179 Curl_cft_conn_is_alive *is_alive; /* FALSE if conn is dead, Jim! */ member
|
/third_party/skia/third_party/externals/angle2/src/tests/ |
D | capture_replay_tests.py | 192 return any([worker.is_alive() for worker in self.workers]) 197 if worker.is_alive():
|
/third_party/python/Lib/asyncio/ |
D | unix_events.py | 1352 if thread.is_alive() and not thread.daemon] 1364 if thread.is_alive()]
|
/third_party/python/Lib/concurrent/futures/ |
D | process.py | 522 return sum(p.is_alive() for p in self.processes.values())
|
/third_party/python/Lib/lib2to3/ |
D | refactor.py | 712 if p.is_alive():
|
/third_party/python/Doc/library/ |
D | multiprocessing.rst | 538 .. method:: is_alive 636 Note that the :meth:`start`, :meth:`join`, :meth:`is_alive`, 647 >>> print(p, p.is_alive()) 650 >>> print(p, p.is_alive()) 654 >>> print(p, p.is_alive()) 2755 process's :meth:`Process.is_alive <multiprocessing.Process.is_alive>` will
|
D | threading.rst | 263 normally, or by raising an unhandled exception. The :meth:`~Thread.is_alive` 366 you must call :meth:`~Thread.is_alive` after :meth:`~Thread.join` to 421 .. method:: is_alive()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.1rc1.rst | 280 Fix assertion error in threading._DummyThread.is_alive().
|