Lines Matching refs:xt
1490 SVCXPRT_EXT *xt = NULL; in svc_xprt_alloc() local
1499 if ((xt = calloc(1, sizeof (SVCXPRT_EXT))) == NULL) in svc_xprt_alloc()
1501 xprt->xp_p3 = (caddr_t)xt; /* SVCEXT(xprt) = xt */ in svc_xprt_alloc()
1505 xt->my_xlist = xlist; in svc_xprt_alloc()
1510 xt->msg = msg; in svc_xprt_alloc()
1514 xt->req = req; in svc_xprt_alloc()
1518 xt->cred_area = cred_area; in svc_xprt_alloc()
1537 SVCXPRT_EXT *xt = xprt ? SVCEXT(xprt) : NULL; in svc_xprt_free() local
1538 SVCXPRT_LIST *my_xlist = xt ? xt->my_xlist: NULL; in svc_xprt_free()
1539 struct rpc_msg *msg = xt ? xt->msg : NULL; in svc_xprt_free()
1540 struct svc_req *req = xt ? xt->req : NULL; in svc_xprt_free()
1541 char *cred_area = xt ? xt->cred_area : NULL; in svc_xprt_free()
1545 if (xt) in svc_xprt_free()
1546 free(xt); in svc_xprt_free()