Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dgenobject.c878 PyCoroObject *cw_coroutine; member
958 cw->cw_coroutine = coro; in coro_await()
1080 Py_CLEAR(cw->cw_coroutine); in coro_wrapper_dealloc()
1087 return gen_iternext((PyGenObject *)cw->cw_coroutine); in coro_wrapper_iternext()
1093 return gen_send((PyGenObject *)cw->cw_coroutine, arg); in coro_wrapper_send()
1099 return gen_throw((PyGenObject *)cw->cw_coroutine, args); in coro_wrapper_throw()
1105 return gen_close((PyGenObject *)cw->cw_coroutine, args); in coro_wrapper_close()
1111 Py_VISIT((PyObject *)cw->cw_coroutine); in coro_wrapper_traverse()