Lines Matching defs:xt
1489 SVCXPRT_EXT *xt = NULL;
1498 if ((xt = calloc(1, sizeof (SVCXPRT_EXT))) == NULL)
1500 xprt->xp_p3 = (caddr_t)xt; /* SVCEXT(xprt) = xt */
1504 xt->my_xlist = xlist;
1509 xt->msg = msg;
1513 xt->req = req;
1517 xt->cred_area = cred_area;
1536 SVCXPRT_EXT *xt = xprt ? SVCEXT(xprt) : NULL;
1537 SVCXPRT_LIST *my_xlist = xt ? xt->my_xlist: NULL;
1538 struct rpc_msg *msg = xt ? xt->msg : NULL;
1539 struct svc_req *req = xt ? xt->req : NULL;
1540 char *cred_area = xt ? xt->cred_area : NULL;
1544 if (xt)
1545 free(xt);