Searched defs:xlist (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libnsl/rpc/
H A Dsvc_door.c494 SVCXPRT_LIST *xlist = SVCEXT(parent)->my_xlist; local
499 xret = xlist->next;
501 xlist->next = xret->next;
524 SVCXPRT_LIST *xhead, *xlist; local
537 xlist = SVCEXT(xprt)->my_xlist;
538 xlist->next = xhead->next;
539 xhead->next = xlist;
H A Dsvc_run.c846 SVCXPRT_LIST *xlist = SVCEXT(parent)->my_xlist; local
853 xret = xlist->next;
855 xlist->next = xret->next;
880 SVCXPRT_LIST *xhead, *xlist; local
891 xlist = SVCEXT(xprt)->my_xlist;
892 xlist->next = xhead->next;
893 xhead->next = xlist;
H A Dsvc.c1488 SVCXPRT_LIST *xlist = NULL; local
1500 if ((xlist = calloc(1, sizeof (SVCXPRT_LIST))) == NULL)
1502 xt->my_xlist = xlist;
1503 xlist->xprt = xprt;
1561 SVCXPRT_LIST *xlist, *xnext = NULL; local
1571 for (xlist = SVCEXT(xprt)->my_xlist; xlist != NULL; xlist = xnext) {
1572 xnext = xlist->next;
1573 xprt = xlist
[all...]

Completed in 29 milliseconds