Home
last modified time | relevance | path

Searched refs:call_exception_handler (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython3/Lib/asyncio/
Dtransports.py266 self._loop.call_exception_handler({
280 self._loop.call_exception_handler({
Dwindows_events.py74 self._loop.call_exception_handler(context)
145 self._loop.call_exception_handler(context)
232 self._loop.call_exception_handler(context)
346 self.call_exception_handler({
725 self._loop.call_exception_handler({
788 self._loop.call_exception_handler(context)
Drunners.py68 loop.call_exception_handler({
Dproactor_events.py103 self._loop.call_exception_handler({
627 self.call_exception_handler({
671 self.call_exception_handler({
Devents.py100 self._loop.call_exception_handler(context)
564 def call_exception_handler(self, context): member in AbstractEventLoop
Dunix_events.py525 self._loop.call_exception_handler({
724 self._loop.call_exception_handler({
881 self._loop.call_exception_handler({
Dselector_events.py171 self.call_exception_handler({
227 self.call_exception_handler(context)
664 self._loop.call_exception_handler({
Dfutures.py107 self._loop.call_exception_handler(context)
Dsslproto.py703 self._loop.call_exception_handler({
Dtasks.py127 self._loop.call_exception_handler(context)
Dbase_events.py515 self.call_exception_handler({
1610 def call_exception_handler(self, context): member in BaseEventLoop
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_runners.py129 loop.call_exception_handler = call_exc_handler_mock
167 loop.call_exception_handler = mock.Mock()
Dtest_proactor_events.py383 self.loop.call_exception_handler = mock.Mock()
385 self.loop.call_exception_handler.assert_not_called()
514 self.loop.call_exception_handler = mock.Mock()
527 self.loop.call_exception_handler = mock.Mock()
587 self.loop.call_exception_handler = mock.Mock()
793 self.loop.call_exception_handler = mock.Mock()
796 self.assertTrue(self.loop.call_exception_handler.called)
Dtest_selector_events.py949 self.loop.call_exception_handler = mock.Mock()
963 self.loop.call_exception_handler = mock.Mock()
1313 self.loop.call_exception_handler = mock.Mock()
1326 self.loop.call_exception_handler = mock.Mock()
1362 self.loop.call_exception_handler = mock.Mock()
1377 self.loop.call_exception_handler = mock.Mock()
Dtest_base_events.py821 self.loop.call_exception_handler = mock.Mock()
830 self.assertFalse(self.loop.call_exception_handler.called)
Dtest_events.py2693 self.loop.call_exception_handler = mock.Mock()
2698 self.loop.call_exception_handler.assert_called_with({
3014 NotImplementedError, loop.call_exception_handler, f)
Dtest_tasks.py2443 self.loop.call_exception_handler = exc_handler = mock.Mock()
2470 self.loop.call_exception_handler = exc_handler = mock.Mock()
/external/python/cpython3/Doc/library/
Dasyncio-llapi-index.rst246 * - :meth:`loop.call_exception_handler`
Dasyncio-eventloop.rst1083 (see :meth:`call_exception_handler` documentation for details
1102 :meth:`call_exception_handler`.
1104 .. method:: loop.call_exception_handler(context)
/external/python/cpython3/Modules/
D_asynciomodule.c1325 _Py_IDENTIFIER(call_exception_handler); in FutureObj_finalize()
2315 _Py_IDENTIFIER(call_exception_handler); in TaskObj_finalize()
/external/python/cpython3/Misc/
DHISTORY2302 loop.call_exception_handler().