/src/sys/netatalk/ |
at_rmx.c | 151 struct radix_node_head *rnh; local in function:at_inithead 156 rnh = *head; 157 rnh->rnh_addaddr = at_addroute; 158 rnh->rnh_deladdr = at_delroute; 159 rnh->rnh_matchaddr = at_matroute; 160 rnh->rnh_lookup = at_lookup;
|
/src/sys/net/ |
rtbl.c | 136 struct radix_node_head *rnh = &t->t_rnh; local in function:rt_matchaddr 139 rn = rnh->rnh_matchaddr(dst, rnh); 148 struct radix_node_head *rnh = &t->t_rnh; local in function:rt_addaddr 151 rn = rnh->rnh_addaddr(rt_getkey(rt), netmask, rnh, rt->rt_nodes); 159 struct radix_node_head *rnh = &t->t_rnh; local in function:rt_lookup 162 rn = rnh->rnh_lookup(dst, netmask, rnh); 172 struct radix_node_head *rnh = &t->t_rnh local in function:rt_deladdr [all...] |
radix.c | 1068 struct radix_node_head *rnh; local in function:rn_inithead 1072 R_Malloc(rnh, struct radix_node_head *, sizeof (*rnh)); 1073 if (rnh == NULL) 1075 *head = rnh; 1076 return rn_inithead0(rnh, off); 1080 rn_inithead0(struct radix_node_head *rnh, int off) 1086 memset(rnh, 0, sizeof(*rnh)); 1087 t = rn_newpair(rn_zeros, off, rnh->rnh_nodes) [all...] |
if_wg.c | 3945 struct radix_node_head *rnh = wg_rnh(wg, wga->wga_family); local in function:wg_destroy_peer 3948 KASSERT(rnh != NULL); 3949 rn = rnh->rnh_deladdr(&wga->wga_sa_addr, 3950 &wga->wga_sa_mask, rnh); 4280 struct radix_node_head *rnh; local in function:wg_pick_peer_by_sa 4293 rnh = wg_rnh(wg, sa->sa_family); 4294 if (rnh == NULL) 4297 rn = rnh->rnh_matchaddr(sa, rnh); 4638 struct radix_node_head *rnh; local in function:wg_rtable_add_route [all...] |
/src/usr.bin/netstat/ |
route.c | 103 struct radix_node_head *rnh, head; local in function:routepr 116 if ((rnh = rt_nodes[i]) == 0) 118 kget(rnh, head);
|
/src/sys/nfs/ |
nfs_export.c | 504 struct radix_node_head *rnh; local in function:hang_addrlist 555 if ((rnh = nep->ne_rtable[i]) == 0) { 567 if ((rnh = nep->ne_rtable[i]) == 0) { 573 enp = (struct netcred *)(*rnh->rnh_addaddr)(saddr, smask, rnh, 577 enp = (struct netcred *)(*rnh->rnh_lookup)(saddr, 578 smask, rnh); 650 struct radix_node_head *rnh = (struct radix_node_head *)w; local in function:free_netcred 653 (*rnh->rnh_deladdr)(rn->rn_key, rn->rn_mask, rnh); 668 struct radix_node_head *rnh; local in function:netexport_clear 818 struct radix_node_head *rnh; local in function:netcred_lookup [all...] |
/src/sbin/routed/ |
radix.c | 855 struct radix_node_head *rnh; local in function:rn_inithead 859 rnh = (struct radix_node_head *)rtmalloc(sizeof(*rnh), "rn_inithead"); 860 Bzero(rnh, sizeof (*rnh)); 861 *head = rnh; 862 t = rn_newpair(rn_zeros, off, rnh->rnh_nodes); 863 ttt = rnh->rnh_nodes + 2; 871 rnh->rnh_addaddr = rn_addroute; 872 rnh->rnh_deladdr = rn_delete [all...] |
/src/sys/external/bsd/ipf/netinet/ |
radix_ipf.c | 997 void delete_addr(ipf_rdx_head_t *rnh, int item); 998 void dumptree(ipf_rdx_head_t *rnh); 1003 void test_addr(ipf_rdx_head_t *rnh, int pref, addrfamily_t *, int); 1185 printroots(rnh) 1186 ipf_rdx_head_t *rnh; 1189 GNAME(&rnh->nodes[0]), 1190 rnh->nodes[0].index, GNAME(rnh->nodes[0].parent), 1191 GNAME(rnh->nodes[0].left), GNAME(rnh->nodes[0].right)) 1207 ipf_rdx_head_t *rnh; local in function:main [all...] |
/src/sys/fs/nfs/common/ |
bootp_subr.c | 392 struct rib_head *rnh; local in function:bootpboot_p_rtlist 395 rnh = rt_tables_get_rnh(0, AF_INET); 396 if (rnh == NULL) 398 RIB_RLOCK(rnh); /* could sleep XXX */ 399 bootpboot_p_tree(rnh->rnh_treetop); 400 RIB_RUNLOCK(rnh);
|