/external/python/cpython3/Lib/asyncio/ |
D | coroutines.py | 119 def coro(*args, **kw): function 189 def _format_coroutine(coro): argument 194 def get_name(coro): argument 211 def is_running(coro): argument
|
D | tasks.py | 101 def __init__(self, coro, *, loop=None): argument 319 def create_task(coro): argument 796 def run_coroutine_threadsafe(coro, loop): argument
|
D | events.py | 280 def create_task(self, coro): argument
|
D | base_events.py | 398 def create_task(self, coro): argument
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_tasks.py | 86 def new_task(self, loop, coro): argument 217 def __init__(self, coro): argument 223 def coro(): function 609 async def coro(): function 665 async def coro(): function 778 def coro(): function 942 def coro(s): function 1321 def coro(s): function 1424 def coro(): function 1563 def coro(): function [all …]
|
D | test_pep492.py | 170 async def coro(): function
|
D | test_base_events.py | 738 def coro(): function 741 factory = lambda loop, coro: MyTask(coro, loop=loop) argument 798 def create_task(self, coro): argument 1936 def run_loop(self, coro): argument
|
D | test_futures.py | 363 def coro(): function
|
D | test_proactor_events.py | 920 def run_loop(self, coro): argument
|
D | test_events.py | 2141 def run_loop(self, coro): argument 2539 async def coro(): function
|
D | test_unix_events.py | 480 def run_loop(self, coro): argument
|
/external/python/cpython3/Lib/test/ |
D | test_coroutines.py | 30 def run_async(coro): argument 44 def run_async__await__(coro): argument 730 async def coro(): function 746 async def reader(coro): argument 767 async def read(coro): argument 1065 async def coro(): function 1098 def __init__(self, coro): argument 1137 async def waiter(coro): argument 2135 def wrapper(coro): argument 2136 async def wrap(coro): argument
|
D | test_contextlib_async.py | 263 def run_coroutine(coro): argument
|
D | test_asyncgen.py | 21 def run_until_complete(coro): argument
|
D | test_collections.py | 607 def coro(): function 657 def coro(): function 1101 def run_async(coro): argument
|
D | test_types.py | 1643 def coro(): function
|
/external/python/cpython3/Objects/ |
D | genobject.c | 910 coro_repr(PyCoroObject *coro) in coro_repr() 917 coro_await(PyCoroObject *coro) in coro_await() 930 coro_get_cr_await(PyCoroObject *coro, void *Py_UNUSED(ignored)) in coro_get_cr_await() 1157 PyObject *coro = gen_new_with_qualname(&PyCoro_Type, f, name, qualname); in PyCoro_New() local
|
/external/python/cpython3/Lib/ |
D | warnings.py | 503 def _warn_unawaited_coroutine(coro): argument
|
/external/python/cpython3/Modules/ |
D | _asynciomodule.c | 133 _is_coroutine(PyObject *coro) in _is_coroutine() 168 is_coroutine(PyObject *coro) in is_coroutine() 1949 _asyncio_Task___init___impl(TaskObj *self, PyObject *coro, PyObject *loop) in _asyncio_Task___init___impl() 2509 PyObject *coro; in task_step_impl() local
|
/external/clang/test/SemaCXX/ |
D | coroutines.cpp | 29 template<typename Promise> struct coro {}; struct
|
/external/python/cpython3/Modules/clinic/ |
D | _asynciomodule.c.h | 270 PyObject *coro; in _asyncio_Task___init__() local
|
/external/python/cpython3/Python/ |
D | _warnings.c | 1169 _PyErr_WarnUnawaitedCoroutine(PyObject *coro) in _PyErr_WarnUnawaitedCoroutine()
|