Searched refs:PyObject_GC_Del (Results 1 – 25 of 67) sorted by relevance
123
/third_party/python/Modules/ |
D | itertoolsmodule.c | 182 PyObject_GC_Del, /* tp_free */ 413 PyObject_GC_Del, /* tp_free */ 466 PyObject_GC_Del(igo); in _grouper_dealloc() 561 PyObject_GC_Del, /* tp_free */ 693 PyObject_GC_Del(tdo); in teedataobject_dealloc() 814 PyObject_GC_Del, /* tp_free */ 924 PyObject_GC_Del(to); in tee_dealloc() 1002 PyObject_GC_Del, /* tp_free */ 1266 PyObject_GC_Del, /* tp_free */ 1431 PyObject_GC_Del, /* tp_free */ [all …]
|
D | _csv.c | 357 PyObject_GC_Del(self); in Dialect_dealloc() 945 PyObject_GC_Del(self); in Reader_dealloc() 1403 PyObject_GC_Del(self); in Writer_dealloc()
|
D | sha1module.c | 332 PyObject_GC_Del(ptr); in SHA1_dealloc()
|
/third_party/python/Objects/ |
D | iterobject.c | 38 PyObject_GC_Del(it); in iter_dealloc() 200 PyObject_GC_Del(it); in calliter_dealloc() 305 PyObject_GC_Del(obj); in anextawaitable_dealloc()
|
D | genobject.c | 136 PyObject_GC_Del(gen); in gen_dealloc() 1081 PyObject_GC_Del(cw); in coro_wrapper_dealloc() 1495 PyObject_GC_Del(o); in _PyAsyncGen_ClearFreeLists() 1502 PyObject_GC_Del(o); in _PyAsyncGen_ClearFreeLists() 1567 PyObject_GC_Del(o); in async_gen_asend_dealloc() 1767 PyObject_GC_Del(o); in async_gen_wrapped_val_dealloc() 1864 PyObject_GC_Del(o); in async_gen_athrow_dealloc()
|
D | enumobject.c | 262 PyObject_GC_Del, /* tp_free */ 477 PyObject_GC_Del, /* tp_free */
|
D | tupleobject.c | 940 PyObject_GC_Del, /* tp_free */ 997 PyObject_GC_Del(v); in _PyTuple_Resize() 1022 PyObject_GC_Del(q); in _PyTuple_ClearFreeList() 1069 PyObject_GC_Del(it); in tupleiter_dealloc()
|
D | cellobject.c | 83 PyObject_GC_Del(op); in cell_dealloc()
|
D | classobject.c | 242 PyObject_GC_Del(im); in method_dealloc() 453 PyObject_GC_Del(self); in instancemethod_dealloc()
|
D | sliceobject.c | 105 PyObject_GC_Del(obj); in _PySlice_Fini() 342 PyObject_GC_Del(r); in slice_dealloc()
|
D | funcobject.c | 646 PyObject_GC_Del(op); in func_dealloc() 956 PyObject_GC_Del, /* tp_free */ 1152 PyObject_GC_Del, /* tp_free */
|
D | namespaceobject.c | 242 PyObject_GC_Del, /* tp_free */
|
D | frameobject.c | 619 PyObject_GC_Del(f); in frame_dealloc() 811 PyObject_GC_Del(f); in frame_alloc() 1133 PyObject_GC_Del(f); in _PyFrame_ClearFreeList()
|
D | descrobject.c | 25 PyObject_GC_Del(descr); in descr_dealloc() 1157 PyObject_GC_Del(pp); in mappingproxy_dealloc() 1270 PyObject_GC_Del(wp); in wrapper_dealloc() 1916 PyObject_GC_Del, /* tp_free */
|
D | weakrefobject.c | 412 PyObject_GC_Del, /*tp_free*/ 586 PyObject_GC_Del(self); in proxy_dealloc()
|
D | unionobject.c | 456 .tp_free = PyObject_GC_Del,
|
D | methodobject.c | 175 PyObject_GC_Del(m); in meth_dealloc()
|
D | structseq.c | 118 PyObject_GC_Del(obj); in structseq_dealloc()
|
/third_party/python/Include/ |
D | objimpl.h | 182 PyAPI_FUNC(void) PyObject_GC_Del(void *);
|
/third_party/python/Python/ |
D | context.c | 1069 .tp_free = PyObject_GC_Del, 1210 .tp_free = PyObject_GC_Del, 1297 PyObject_GC_Del(ctx); in _PyContext_ClearFreeList()
|
D | hamt.c | 2539 PyObject_GC_Del(it); in hamt_baseiter_tp_dealloc() 2924 .tp_free = PyObject_GC_Del, 2937 .tp_free = PyObject_GC_Del, 2950 .tp_free = PyObject_GC_Del,
|
D | bltinmodule.c | 678 PyObject_GC_Del, /* tp_free */ 1431 PyObject_GC_Del, /* tp_free */ 2903 PyObject_GC_Del, /* tp_free */
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | message_factory.cc | 290 PyObject_GC_Del, // tp_free
|
/third_party/python/Doc/c-api/ |
D | gcsupport.rst | 42 #. The object's memory must be deallocated using :c:func:`PyObject_GC_Del`. 112 .. c:function:: void PyObject_GC_Del(void *op)
|
/third_party/python/Modules/_ctypes/ |
D | callbacks.c | 24 PyObject_GC_Del(self); in CThunkObject_dealloc()
|
123