Lines Matching refs:cred_area
1335 char *cred_area; in svc_getreq_common() local
1370 cred_area = SVCEXT(xprt)->cred_area; in svc_getreq_common()
1371 msg->rm_call.cb_cred.oa_base = cred_area; in svc_getreq_common()
1372 msg->rm_call.cb_verf.oa_base = &(cred_area[MAX_AUTH_BYTES]); in svc_getreq_common()
1373 r->rq_clntcred = &(cred_area[2 * MAX_AUTH_BYTES]); in svc_getreq_common()
1497 char *cred_area = NULL; in svc_xprt_alloc() local
1519 if ((cred_area = malloc(2*MAX_AUTH_BYTES + RQCRED_SIZE)) == NULL) in svc_xprt_alloc()
1521 xt->cred_area = cred_area; in svc_xprt_alloc()
1544 char *cred_area = xt ? xt->cred_area : NULL; in svc_xprt_free() local
1556 if (cred_area) in svc_xprt_free()
1557 free(cred_area); in svc_xprt_free()