Home
last modified time | relevance | path

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

/third_party/python/Doc/c-api/
Diter.rst57 .. c:type:: PySendResult
64 .. c:function:: PySendResult PyIter_Send(PyObject *iter, PyObject *arg, PyObject **presult)
Dtypeobj.rst2460 PySendResult am_send(PyObject *self, PyObject *arg, PyObject **result);
2562 .. c:type:: PySendResult (*sendfunc)(PyObject *, PyObject *, PyObject **)
/third_party/python/Include/cpython/
Dobject.h171 typedef PySendResult (*sendfunc)(PyObject *iter, PyObject *value, PyObject **result);
/third_party/python/Include/
Dabstract.h408 PyAPI_FUNC(PySendResult) PyIter_Send(PyObject *, PyObject *, PyObject **);
Dobject.h639 } PySendResult; typedef
/third_party/python/Objects/
Dgenobject.c139 static PySendResult
269 static PySendResult
Dabstract.c2886 PySendResult
2893 PySendResult res = Py_TYPE(iter)->tp_as_async->am_send(iter, arg, result); in PyIter_Send()
/third_party/python/Modules/
D_asynciomodule.c1608 static PySendResult
/third_party/python/Python/
Dceval.c2584 PySendResult gen_status; in _PyEval_EvalFrameDefault()