Searched refs:newh (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/sys/netpfil/ipfw/
H A Ddn_heap.h124 * newh(key, flags, arg) optional, used to allocate a new
172 void *(*newh)(uintptr_t, int, void *));
H A Ddn_heap.c328 void *(*newh)(uintptr_t, int, void *); member in struct:dn_ht
334 * If the 'newh' function is not supplied, we assume that the
341 void *(*newh)(uintptr_t, int, void *))
415 ht->newh = newh;
478 p = ht->newh ? ht->newh(key, flags, arg) : (void *)key;
479 // printf("%s newh returns %p\n", __FUNCTION__, p);
338 dn_ht_init(struct dn_ht *ht, int buckets, int ofs, uint32_t (*h)(uintptr_t, int, void *), int (*match)(void *, uintptr_t, int, void *), void *(*newh)(uintptr_t, int, void *)) argument
/freebsd-13-stable/contrib/wpa/src/radius/
H A Dradius_client.c290 struct radius_rx_handler **handlers, *newh; local
301 newh = os_realloc_array(*handlers, *num + 1,
303 if (newh == NULL)
306 newh[*num].handler = handler;
307 newh[*num].data = data;
309 *handlers = newh;

Completed in 88 milliseconds