/src/sys/sys/ |
thmap.h | 47 thmap_t * thmap_create(uintptr_t, const thmap_ops_t *, unsigned);
|
/src/sys/net/npf/ |
npf_params.c | 95 paraminfo->map = thmap_create(0, &npf_param_thmap_ops, THMAP_NOCOPY);
|
npf_conndb.c | 140 cd->cd_map = thmap_create(0, NULL, THMAP_NOCOPY);
|
npf_portmap.c | 164 pm->addr_map = thmap_create(0, NULL, THMAP_NOCOPY);
|
npf_tableset.c | 387 t->t_map = thmap_create(0, NULL, THMAP_NOCOPY);
|
/src/sys/netinet/ |
ip_encap.c | 186 encap_map[0] = thmap_create(0, NULL, THMAP_NOCOPY); 188 encap_map[1] = thmap_create(0, NULL, THMAP_NOCOPY);
|
/src/sys/kern/ |
subr_thmap.c | 1003 * thmap_create: construct a new trie-hash map object. 1006 thmap_create(uintptr_t baseptr, const thmap_ops_t *ops, unsigned flags) function in typeref:typename:thmap_t *
|
/src/sys/net/ |
if_wg.c | 4146 wg->wg_peers_bypubkey = thmap_create(0, NULL, THMAP_NOCOPY); 4147 wg->wg_peers_byname = thmap_create(0, NULL, THMAP_NOCOPY); 4148 wg->wg_sessions_byindex = thmap_create(0, NULL, THMAP_NOCOPY);
|