Lines Matching defs:func
38 _clear_radix(isc_radix_tree_t *radix, isc_radix_destroyfunc_t func);
158 * if func is supplied, it will be called as func(node->data)
163 _clear_radix(isc_radix_tree_t *radix, isc_radix_destroyfunc_t func) {
178 if (func != NULL)
179 func(Xrn->data);
209 isc_radix_destroy(isc_radix_tree_t *radix, isc_radix_destroyfunc_t func) {
211 _clear_radix(radix, func);
217 * func will be called as func(node->prefix, node->data)
220 isc_radix_process(isc_radix_tree_t *radix, isc_radix_processfunc_t func) {
223 REQUIRE(func != NULL);
226 func(node->prefix, node->data);