Home | History | Annotate | Download | only in rpcbind

Lines Matching defs:pml

1442 	struct pmaplist *pml;
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;
1507 for (prevpml = NULL, pml = list_pml; pml; /* cstyle */) {
1508 if ((pml->pml_map.pm_prog != arg->r_prog) ||
1509 (pml->pml_map.pm_vers != arg->r_vers) ||
1510 (prot && (pml->pml_map.pm_prot != prot))) {
1511 /* both pml & prevpml move forwards */
1512 prevpml = pml;
1513 pml = pml->pml_next;
1516 /* found it; pml moves forward, prevpml stays */
1517 fnd = pml;
1518 pml = pml->pml_next;
1520 list_pml = pml;
1522 prevpml->pml_next = pml;