Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dgenobject.c844 PyCoroObject *cw_coroutine; member
924 cw->cw_coroutine = coro; in coro_await()
1037 Py_CLEAR(cw->cw_coroutine); in coro_wrapper_dealloc()
1044 return gen_send_ex((PyGenObject *)cw->cw_coroutine, NULL, 0, 0); in coro_wrapper_iternext()
1050 return gen_send_ex((PyGenObject *)cw->cw_coroutine, arg, 0, 0); in coro_wrapper_send()
1056 return gen_throw((PyGenObject *)cw->cw_coroutine, args); in coro_wrapper_throw()
1062 return gen_close((PyGenObject *)cw->cw_coroutine, args); in coro_wrapper_close()
1068 Py_VISIT((PyObject *)cw->cw_coroutine); in coro_wrapper_traverse()