Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dtypeslots.inc78 {offsetof(PyAsyncMethods, am_await), offsetof(PyTypeObject, tp_as_async)},
79 {offsetof(PyAsyncMethods, am_aiter), offsetof(PyTypeObject, tp_as_async)},
80 {offsetof(PyAsyncMethods, am_anext), offsetof(PyTypeObject, tp_as_async)},
82 {offsetof(PyAsyncMethods, am_send), offsetof(PyTypeObject, tp_as_async)},
Dgenobject.c769 static PyAsyncMethods gen_as_async = {
1017 static PyAsyncMethods coro_as_async = {
1400 static PyAsyncMethods async_gen_as_async = {
1664 static PyAsyncMethods async_gen_asend_as_async = {
2073 static PyAsyncMethods async_gen_athrow_as_async = {
Diterobject.c448 static PyAsyncMethods anextawaitable_as_async = {
/third_party/python/Include/cpython/
Dobject.h178 } PyAsyncMethods; typedef
202 PyAsyncMethods *tp_as_async; /* formerly known as tp_compare (Python 2)
280 PyAsyncMethods as_async;
/third_party/python/Doc/includes/
Dtypestruct.h12 PyAsyncMethods *tp_as_async; /* formerly known as tp_compare (Python 2)
/third_party/python/Doc/c-api/
Dtypeobj.rst60 …| :c:member:`~PyTypeObject.tp_as_async` | :c:type:`PyAsyncMethods` * | :ref:`sub-s…
196 …| :c:member:`~PyAsyncMethods.am_await` | :c:type:`unaryfunc` | __…
198 …| :c:member:`~PyAsyncMethods.am_aiter` | :c:type:`unaryfunc` | __…
200 …| :c:member:`~PyAsyncMethods.am_anext` | :c:type:`unaryfunc` | __…
202 …| :c:member:`~PyAsyncMethods.am_send` | :c:type:`sendfunc` | …
787 .. c:member:: PyAsyncMethods* PyTypeObject.tp_as_async
2411 .. c:type:: PyAsyncMethods
2423 } PyAsyncMethods;
2425 .. c:member:: unaryfunc PyAsyncMethods.am_await
2436 .. c:member:: unaryfunc PyAsyncMethods.am_aiter
[all …]
Dtype.rst239 :c:type:`PyAsyncMethods` with an added ``Py_`` prefix.
/third_party/python/Modules/
D_asynciomodule.c1486 static PyAsyncMethods FutureType_as_async = {
1751 static PyAsyncMethods FutureIterType_as_async = {
D_testcapimodule.c6216 static PyAsyncMethods awaitType_as_async = {
/third_party/python/Misc/NEWS.d/
D3.10.0a3.rst1481 Add dedicated entry to PyAsyncMethods for sending values
/third_party/python/Tools/c-analyzer/cpython/
Dignored.tsv948 # PyAsyncMethods []