Home | History | Annotate | Download | only in util

Lines Matching refs:destroy

57    void (*destroy)(void *object);
79 ht->destroy = NULL;
87 void (*destroy)(void *object))
92 ht->destroy = destroy;
136 * present in the table when seen by the destroy callback, because the
137 * destroy callback may directly or indirectly call the other functions in
145 if(ht->destroy)
146 ht->destroy(object);
291 if(ht->destroy)