Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dtypeslots.inc82 {offsetof(PyAsyncMethods, am_send), offsetof(PyTypeObject, tp_as_async)},
Dabstract.c2892 if (Py_TYPE(iter)->tp_as_async && Py_TYPE(iter)->tp_as_async->am_send) { in PyIter_Send()
2893 PySendResult res = Py_TYPE(iter)->tp_as_async->am_send(iter, arg, result); in PyIter_Send()
/third_party/python/Include/cpython/
Dobject.h177 sendfunc am_send; member
/third_party/python/Doc/c-api/
Dtypeobj.rst202 …| :c:member:`~PyAsyncMethods.am_send` | :c:type:`sendfunc` | …
2422 sendfunc am_send;
2456 .. c:member:: sendfunc PyAsyncMethods.am_send
2460 PySendResult am_send(PyObject *self, PyObject *arg, PyObject **result);
2564 See :c:member:`~PyAsyncMethods.am_send`.