Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dtypeslots.inc78 offsetof(PyHeapTypeObject, as_async.am_await),
79 offsetof(PyHeapTypeObject, as_async.am_aiter),
80 offsetof(PyHeapTypeObject, as_async.am_anext),
Dtypeobject.c2583 type->tp_as_async = &et->as_async; in type_new()
2928 type->tp_as_async = &res->as_async; in PyType_FromSpecWithBases()
6907 ETSLOT(NAME, as_async.SLOT, FUNCTION, WRAPPER, DOC)
7146 else if ((size_t)offset >= offsetof(PyHeapTypeObject, as_async)) { in slotptr()
7148 offset -= offsetof(PyHeapTypeObject, as_async); in slotptr()
/external/python/cpython3/Include/cpython/
Dobject.h277 PyAsyncMethods as_async; member
/external/python/pybind11/include/pybind11/detail/
Dclass.h596 type->tp_as_async = &heap_type->as_async; in make_new_python_type()