Searched refs:destructor (Results 1 – 10 of 10) sorted by relevance
40 %destructor { free($$); } atom IDENT STRING NUMBER43 %destructor { xlu__cfg_value_free($$); } value valuelist values
100 talloc_destructor_t destructor; member188 tc->destructor = NULL; in _talloc()218 void talloc_set_destructor(const void *ptr, int (*destructor)(void *)) in talloc_set_destructor()221 tc->destructor = destructor; in talloc_set_destructor()244 if (tc1->destructor != (talloc_destructor_t)-1) { in talloc_reference_destructor()245 tc1->destructor = NULL; in talloc_reference_destructor()567 if (tc->destructor) { in talloc_free()568 talloc_destructor_t d = tc->destructor; in talloc_free()572 tc->destructor = (talloc_destructor_t)-1; in talloc_free()574 tc->destructor = d; in talloc_free()[all …]
94 condition is if the pointer had a destructor attached to it and the95 destructor returned -1. See talloc_set_destructor() for details on162 The function talloc_set_destructor() sets the "destructor" for the163 pointer "ptr". A destructor is a function that is called when the164 memory used by a pointer is about to be released. The destructor168 The destructor can do anything it wants to, including freeing other171 in the structure the destructor is placed on.175 and place an additional destructor on that.178 destructor.180 If your destructor attempts to talloc_free() the pointer that it is[all …]
102 void talloc_set_destructor(const void *ptr, int (*destructor)(void *));
138 (destructor) fsimage_file_dealloc, /* tp_dealloc */240 (destructor) fsimage_fs_dealloc, /* tp_dealloc */
95 %destructor {
2111 incorrect destructor might then be invoked immediately. In the2113 to an incorrect destructor call or verbose syntax error message
1019 .tp_dealloc = (destructor)xshandle_dealloc,
205 24) *Linux-specific*: Register destructor callback when packet pages are freed.213 27) *Linux-specific*: Packet destructor callback is called.
2665 .tp_dealloc = (destructor)PyXc_dealloc,
Completed in 18 milliseconds