Searched refs:as_async (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Objects/ |
D | typeslots.inc | 78 offsetof(PyHeapTypeObject, as_async.am_await), 79 offsetof(PyHeapTypeObject, as_async.am_aiter), 80 offsetof(PyHeapTypeObject, as_async.am_anext),
|
D | typeobject.c | 2603 type->tp_as_async = &et->as_async; in type_new() 2909 type->tp_as_async = &res->as_async; in PyType_FromSpecWithBases() 6765 ETSLOT(NAME, as_async.SLOT, FUNCTION, WRAPPER, DOC) 7004 else if ((size_t)offset >= offsetof(PyHeapTypeObject, as_async)) { in slotptr() 7006 offset -= offsetof(PyHeapTypeObject, as_async); in slotptr()
|
/external/python/cpython3/Include/ |
D | object.h | 465 PyAsyncMethods as_async; member
|