Searched refs:call_at (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Lib/asyncio/ |
D | test_utils.py | 404 def call_at(self, when, callback, *args): member in TestLoop 406 return super().call_at(when, callback, *args)
|
D | events.py | 269 def call_at(self, when, callback, *args): member in AbstractEventLoop
|
D | base_events.py | 542 timer = self.call_at(self.time() + delay, callback, *args) 547 def call_at(self, when, callback, *args): member in BaseEventLoop
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_base_events.py | 280 self.loop.call_at(when, cb) 304 loop.call_at(loop.time() + 60, cb) 308 loop.call_at(loop.time() + 60, cb) 1707 self.loop.call_at(self.loop.time() + 60, func)
|
D | test_events.py | 1841 self.loop.call_at(self.loop.time() + .0, func) 2575 NotImplementedError, loop.call_at, f, f)
|
/external/python/cpython3/Doc/library/ |
D | asyncio-dev.rst | 36 * :meth:`~AbstractEventLoop.call_soon` and :meth:`~AbstractEventLoop.call_at` methods
|
D | asyncio-eventloop.rst | 186 .. method:: AbstractEventLoop.call_at(when, callback, *args) 845 and :func:`AbstractEventLoop.call_at`.
|