Home
last modified time | relevance | path

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

/external/python/cpython3/Doc/includes/
Dtypestruct.h73 destructor tp_del; member
/external/python/cpython3/Objects/
Dtypeslots.inc54 offsetof(PyHeapTypeObject, ht_type.tp_del),
Dtypeobject.c1135 if (type->tp_del) { in subtype_dealloc()
1136 type->tp_del(self); in subtype_dealloc()
1181 has_finalizer = type->tp_finalize || type->tp_del; in subtype_dealloc()
1203 if (type->tp_del) { in subtype_dealloc()
1205 type->tp_del(self); in subtype_dealloc()
/external/python/cpython2/Objects/
Dgenobject.c32 Py_TYPE(gen)->tp_del(self); in gen_dealloc()
Dtypeobject.c941 if (type->tp_del) { in subtype_dealloc()
942 type->tp_del(self); in subtype_dealloc()
1000 if (type->tp_del) { in subtype_dealloc()
1002 type->tp_del(self); in subtype_dealloc()
6088 TPSLOT("__del__", tp_del, slot_tp_del, NULL, ""),
/external/python/cpython2/Include/
Dobject.h398 destructor tp_del; member
/external/python/cpython3/Include/
Dobject.h420 destructor tp_del; member
/external/python/cpython3/Doc/library/
Dgc.rst212 C extension types with a non-NULL ``tp_del`` slot.
/external/python/cpython2/Modules/
Dgcmodule.c511 return op->ob_type->tp_del != NULL; in has_finalizer()
/external/python/cpython3/Modules/
Dgcmodule.c425 return op->ob_type->tp_del != NULL; in has_legacy_finalizer()
D_testcapimodule.c3250 tp->tp_del = slot_tp_del; in with_tp_del()