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.c2614 type->tp_as_async = &et->as_async; in type_new()
2992 type->tp_as_async = &res->as_async; in PyType_FromModuleAndSpec()
7097 ETSLOT(NAME, as_async.SLOT, FUNCTION, WRAPPER, DOC)
7336 else if ((size_t)offset >= offsetof(PyHeapTypeObject, as_async)) { in slotptr()
7338 offset -= offsetof(PyHeapTypeObject, as_async); in slotptr()
/external/python/cpython3/Include/cpython/
Dobject.h281 PyAsyncMethods as_async; member
/external/python/pybind11/include/pybind11/detail/
Dclass.h670 type->tp_as_async = &heap_type->as_async; in make_new_python_type()