Home
last modified time | relevance | path

Searched defs:coro (Results 1 – 22 of 22) sorted by relevance

/external/python/cpython3/Lib/asyncio/
Dcoroutines.py119 def coro(*args, **kw): function
189 def _format_coroutine(coro): argument
194 def get_name(coro): argument
211 def is_running(coro): argument
Dtasks.py101 def __init__(self, coro, *, loop=None): argument
319 def create_task(coro): argument
796 def run_coroutine_threadsafe(coro, loop): argument
Devents.py280 def create_task(self, coro): argument
Dbase_events.py398 def create_task(self, coro): argument
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_tasks.py86 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 …]
Dtest_pep492.py170 async def coro(): function
Dtest_base_events.py738 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
Dtest_futures.py363 def coro(): function
Dtest_proactor_events.py920 def run_loop(self, coro): argument
Dtest_events.py2141 def run_loop(self, coro): argument
2539 async def coro(): function
Dtest_unix_events.py480 def run_loop(self, coro): argument
/external/python/cpython3/Lib/test/
Dtest_coroutines.py30 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
Dtest_contextlib_async.py263 def run_coroutine(coro): argument
Dtest_asyncgen.py21 def run_until_complete(coro): argument
Dtest_collections.py607 def coro(): function
657 def coro(): function
1101 def run_async(coro): argument
Dtest_types.py1643 def coro(): function
/external/python/cpython3/Objects/
Dgenobject.c910 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/
Dwarnings.py503 def _warn_unawaited_coroutine(coro): argument
/external/python/cpython3/Modules/
D_asynciomodule.c133 _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/
Dcoroutines.cpp29 template<typename Promise> struct coro {}; struct
/external/python/cpython3/Modules/clinic/
D_asynciomodule.c.h270 PyObject *coro; in _asyncio_Task___init__() local
/external/python/cpython3/Python/
D_warnings.c1169 _PyErr_WarnUnawaitedCoroutine(PyObject *coro) in _PyErr_WarnUnawaitedCoroutine()