Home
last modified time | relevance | path

Searched refs:is_alive (Results 1 – 25 of 38) sorted by relevance

12

/third_party/python/Lib/test/support/
Dthreading_helper.py112 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/
Dgstdtlsconnection.c88 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__.py55 if self._start_called and not self.is_alive():
71 if not p.is_alive():
/third_party/python/Lib/test/test_importlib/
Dthreaded_import_hangers.py42 if t.is_alive():
/third_party/python/Lib/
Dthreading.py878 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
Dsocketserver.py650 self[:] = (thread for thread in self if thread.is_alive())
Dsubprocess.py1524 if self.stdout_thread.is_alive():
1528 if self.stderr_thread.is_alive():
/third_party/python/Lib/test/
Dtest_poll.py222 self.assertTrue(poll_thread.is_alive())
227 self.assertFalse(poll_thread.is_alive())
Dtest_threading.py162 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.py243 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/
Druntest_mp.py147 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/
Dprocess.py153 def is_alive(self): member in BaseProcess
370 def is_alive(self): member in _ParentProcess
Dresource_sharer.py100 if self._thread.is_alive():
Dmanagers.py619 if not self._process.is_alive():
663 if process.is_alive():
675 if process.is_alive():
681 if process.is_alive():
Dpool.py673 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/
Dexception_safety_testing.h111 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/
Dcfilters.c109 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()
Dcfilters.h179 Curl_cft_conn_is_alive *is_alive; /* FALSE if conn is dead, Jim! */ member
/third_party/skia/third_party/externals/angle2/src/tests/
Dcapture_replay_tests.py192 return any([worker.is_alive() for worker in self.workers])
197 if worker.is_alive():
/third_party/python/Lib/asyncio/
Dunix_events.py1352 if thread.is_alive() and not thread.daemon]
1364 if thread.is_alive()]
/third_party/python/Lib/concurrent/futures/
Dprocess.py522 return sum(p.is_alive() for p in self.processes.values())
/third_party/python/Lib/lib2to3/
Drefactor.py712 if p.is_alive():
/third_party/python/Doc/library/
Dmultiprocessing.rst538 .. 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
Dthreading.rst263 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/
D3.6.1rc1.rst280 Fix assertion error in threading._DummyThread.is_alive().

12