Home
last modified time | relevance | path

Searched refs:pml (Results 1 – 3 of 3) sorted by relevance

/dragonfly/usr.sbin/rpcbind/
H A Drpcbind.c513 struct pmaplist *pml; in init_transport() local
522 if (pml == NULL) { in init_transport()
526 pml->pml_map.pm_prog = PMAPPROG; in init_transport()
557 pml->pml_next = list_pml; in init_transport()
558 list_pml = pml; in init_transport()
562 if (pml == NULL) { in init_transport()
568 pml->pml_next = list_pml; in init_transport()
569 list_pml = pml; in init_transport()
573 if (pml == NULL) { in init_transport()
579 pml->pml_next = list_pml; in init_transport()
[all …]
H A Dpmap_svc.c147 struct pmaplist *pml; in find_service_pmap() local
149 for (pml = list_pml; pml != NULL; pml = pml->pml_next) { in find_service_pmap()
150 if ((pml->pml_map.pm_prog != prog) || in find_service_pmap()
151 (pml->pml_map.pm_prot != prot)) in find_service_pmap()
153 hit = pml; in find_service_pmap()
154 if (pml->pml_map.pm_vers == vers) in find_service_pmap()
H A Drpcb_svc_com.c1397 struct pmaplist *pml; in add_pmaplist() local
1421 if (pml == NULL) { in add_pmaplist()
1425 pml->pml_map = pmap; in add_pmaplist()
1426 pml->pml_next = NULL; in add_pmaplist()
1428 list_pml = pml; in add_pmaplist()
1462 for (prevpml = NULL, pml = list_pml; pml; /* cstyle */) { in del_pmaplist()
1467 prevpml = pml; in del_pmaplist()
1468 pml = pml->pml_next; in del_pmaplist()
1472 fnd = pml; in del_pmaplist()
1473 pml = pml->pml_next; in del_pmaplist()
[all …]