Home | History | Annotate | Download | only in lib

Lines Matching full:data_freer

69        true if two user entries compare equally; and DATA_FREER is the cleanup
73 Hash_data_freer data_freer;
585 The user-supplied DATA_FREER function, when not NULL, may be later called
596 Hash_data_freer data_freer)
635 table->data_freer = data_freer;
649 Apply the user-specified function data_freer (if any) to the datas of any
667 if (table->data_freer)
668 table->data_freer (cursor->data);
679 if (table->data_freer)
680 table->data_freer (bucket->data);
690 /* Reclaim all storage associated with a hash table. If a data_freer
702 /* Call the user data_freer function. */
703 if (table->data_freer && table->n_entries)
710 table->data_freer (cursor->data);
964 new_table->data_freer = table->data_freer;