HomeSort by: relevance | last modified time | path
    Searched defs:pml (Results 1 - 3 of 3) sorted by relevancy

  /src/usr.sbin/rpcbind/
pmap_svc.c 154 register struct pmaplist *pml; local in function:find_service_pmap
156 for (pml = list_pml; pml != NULL; pml = pml->pml_next) {
157 if ((pml->pml_map.pm_prog != prog) ||
158 (pml->pml_map.pm_prot != prot))
160 hit = pml;
161 if (pml->pml_map.pm_vers == vers)
rpcbind.c 581 struct pmaplist *pml; local in function:init_transport
589 pml = malloc(sizeof(*pml));
590 if (pml == NULL) {
595 pml->pml_map.pm_prog = PMAPPROG;
596 pml->pml_map.pm_vers = PMAPVERS;
597 pml->pml_map.pm_port = PMAPPORT;
602 free(pml);
607 free(pml);
612 pml->pml_map.pm_prot = IPPROTO_TCP
    [all...]
rpcb_svc_com.c 1442 struct pmaplist *pml; local in function:add_pmaplist
1465 pml = malloc(sizeof(*pml));
1466 if (pml == NULL) {
1470 pml->pml_map = pmap;
1471 pml->pml_next = NULL;
1473 list_pml = pml;
1480 fnd->pml_next = pml;
1491 struct pmaplist *pml; local in function:del_pmaplist
1507 for (prevpml = NULL, pml = list_pml; pml; /* cstyle */)
    [all...]

Completed in 14 milliseconds