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

/illumos-gate/usr/src/cmd/keyserv/
H A Dkey_generic.c75 struct xlist { struct
77 struct xlist *next; /* Next item */
79 static struct xlist *xprtlist;
171 l = (struct xlist *)malloc(sizeof (struct xlist));
172 if (l == (struct xlist *)NULL) {
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Dsvc_door.c497 SVCXPRT_LIST *xlist = SVCEXT(parent)->my_xlist; local
502 xret = xlist->next;
504 xlist->next = xret->next;
527 SVCXPRT_LIST *xhead, *xlist; local
540 xlist = SVCEXT(xprt)->my_xlist;
541 xlist->next = xhead->next;
542 xhead->next = xlist;
H A Dsvc_run.c851 SVCXPRT_LIST *xlist = SVCEXT(parent)->my_xlist; local
858 xret = xlist->next;
860 xlist->next = xret->next;
885 SVCXPRT_LIST *xhead, *xlist; local
896 xlist = SVCEXT(xprt)->my_xlist;
897 xlist->next = xhead->next;
898 xhead->next = xlist;
H A Dsvc.c1490 SVCXPRT_LIST *xlist = NULL; local
1502 if ((xlist = calloc(1, sizeof (SVCXPRT_LIST))) == NULL)
1504 xt->my_xlist = xlist;
1505 xlist->xprt = xprt;
1563 SVCXPRT_LIST *xlist, *xnext = NULL; local
1573 for (xlist = SVCEXT(xprt)->my_xlist; xlist != NULL; xlist = xnext) {
1574 xnext = xlist->next;
1575 xprt = xlist
[all...]
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_common_transact.c1829 smb_llist_t *xlist; local
1887 xlist = &session->s_xa_list;
1888 smb_llist_enter(xlist, RW_WRITER);
1889 nxa = smb_llist_head(xlist);
1896 smb_llist_exit(xlist);
1900 nxa = smb_llist_next(xlist, nxa);
1902 smb_llist_insert_tail(xlist, xa);
1903 smb_llist_exit(xlist);
2037 smb_llist_t *xlist; local
2039 xlist
[all...]

Completed in 70 milliseconds