Searched refs:oa_base (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-11-stable/lib/libc/rpc/
H A Dauth_unix.c125 au->au_origcred.oa_base = NULL;
147 au->au_origcred.oa_base = mem_alloc((u_int) len);
149 if ((au->au_origcred.oa_base = mem_alloc((u_int) len)) == NULL) {
154 memmove(au->au_origcred.oa_base, mymem, (size_t)len);
167 if (au->au_origcred.oa_base)
168 mem_free(au->au_origcred.oa_base, (u_int)len);
244 xdrmem_create(&xdrs, verf->oa_base, verf->oa_length,
247 if (au->au_shcred.oa_base != NULL) {
248 mem_free(au->au_shcred.oa_base,
250 au->au_shcred.oa_base
[all...]
H A Drpc_callmsg.c94 memmove(buf, oa->oa_base, oa->oa_length);
101 memmove(buf, oa->oa_base, oa->oa_length);
131 if (oa->oa_base == NULL) {
132 oa->oa_base = (caddr_t)
134 if (oa->oa_base == NULL)
139 if (xdr_opaque(xdrs, oa->oa_base,
144 memmove(oa->oa_base, buf,
167 if (oa->oa_base == NULL) {
168 oa->oa_base = (caddr_t)
170 if (oa->oa_base
[all...]
H A Dsvc_auth_unix.c82 xdrmem_create(&xdrs, msg->rm_call.cb_cred.oa_base, auth_len,XDR_DECODE);
127 rqst->rq_xprt->xp_verf.oa_base =
128 msg->rm_call.cb_verf.oa_base;
H A Dsvc_auth_des.c142 ixdr = (long *)msg->rm_call.cb_cred.oa_base;
169 ixdr = (long *)msg->rm_call.cb_verf.oa_base;
306 ixdr = (long *)msg->rm_call.cb_verf.oa_base;
312 rqst->rq_xprt->xp_verf.oa_base = msg->rm_call.cb_verf.oa_base;
314 (char *)ixdr - msg->rm_call.cb_verf.oa_base;
H A Dclnt_raw.c224 if (msg.acpted_rply.ar_verf.oa_base != NULL) {
H A Drpc_prot.c78 return (xdr_bytes(xdrs, &ap->oa_base,
H A Dsvc_raw.c119 srp->server->xp_verf.oa_base = srp->verf_body;
H A Dsvc.c626 msg.rm_call.cb_cred.oa_base = cred_area;
627 msg.rm_call.cb_verf.oa_base = &(cred_area[MAX_AUTH_BYTES]);
H A Dauth_des.c377 ixdr = (uint32_t *)rverf->oa_base;
H A Dclnt_dg.c578 if (reply_msg.acpted_rply.ar_verf.oa_base != NULL) {
H A Dclnt_vc.c444 if (reply_msg.acpted_rply.ar_verf.oa_base != NULL) {
H A Dsvc_dg.c142 xprt->xp_verf.oa_base = su->su_verfbody;
/freebsd-11-stable/sys/rpc/
H A Dauth_unix.c192 au->au_origcred.oa_base = NULL;
207 au->au_origcred.oa_base = mem_alloc((u_int) len);
208 memcpy(au->au_origcred.oa_base, mymem, (size_t)len);
275 xdrmem_create(&txdrs, verf->oa_base, verf->oa_length,
278 if (au->au_shcred.oa_base != NULL) {
279 mem_free(au->au_shcred.oa_base,
281 au->au_shcred.oa_base = NULL;
288 au->au_shcred.oa_base = NULL;
307 if (auth->ah_cred.oa_base == au->au_origcred.oa_base) {
[all...]
H A Drpc_callmsg.c89 memcpy(buf, oa->oa_base, oa->oa_length);
96 memcpy(buf, oa->oa_base, oa->oa_length);
126 if (oa->oa_base == NULL) {
127 oa->oa_base = (caddr_t)
129 if (oa->oa_base == NULL)
134 if (xdr_opaque(xdrs, oa->oa_base,
139 memcpy(oa->oa_base, buf,
162 if (oa->oa_base == NULL) {
163 oa->oa_base = (caddr_t)
165 if (oa->oa_base
[all...]
H A Dsvc_auth_unix.c77 xdrmem_create(&xdrs, msg->rm_call.cb_cred.oa_base, auth_len,
H A Dauth.h171 caddr_t oa_base; /* address of more auth stuff */ member in struct:opaque_auth
H A Drpc_prot.c85 return (xdr_bytes(xdrs, &ap->oa_base,
H A Dclnt_bck.c320 reply_msg.acpted_rply.ar_verf.oa_base = cr->cr_verf;
H A Dsvc.c926 msg.rm_call.cb_cred.oa_base = r->rq_credarea;
927 msg.rm_call.cb_verf.oa_base = &r->rq_credarea[MAX_AUTH_BYTES];
/freebsd-11-stable/contrib/amd/libamu/
H A Dmisc_rpc.c109 reply_msg.acpted_rply.ar_verf.oa_base) {
/freebsd-11-stable/lib/librpcsec_gss/
H A Drpcsec_gss.c295 memcpy(gd->gd_verf.value, verf->oa_base, verf->oa_length);
304 checksum.value = verf->oa_base;
595 creds.oa_base = credbuf;
642 verf.oa_base = checksum.value;
H A Dsvc_rpcsec_gss.c773 memcpy((caddr_t)buf, oa->oa_base, oa->oa_length);
779 checksum.value = msg->rm_call.cb_verf.oa_base;
821 rqst->rq_xprt->xp_verf.oa_base = (caddr_t)client->cl_verf.value;
979 xdrmem_create(&xdrs, rqst->rq_cred.oa_base,
/freebsd-11-stable/include/rpc/
H A Dauth.h171 caddr_t oa_base; /* address of more auth stuff */ member in struct:opaque_auth
/freebsd-11-stable/sys/rpc/rpcsec_gss/
H A Drpcsec_gss.c539 creds.oa_base = credbuf;
589 verf.oa_base = checksum.value;
657 memcpy(gd->gd_verf.value, verf->oa_base, verf->oa_length);
687 checksum.value = verf->oa_base;
H A Dsvc_rpcsec_gss.c1043 memcpy((caddr_t)buf, oa->oa_base, oa->oa_length);
1049 checksum.value = msg->rm_call.cb_verf.oa_base;
1104 bcopy(mic.value, rqst->rq_verf.oa_base, mic.length);
1274 xdrmem_create(&xdrs, rqst->rq_cred.oa_base,

Completed in 118 milliseconds

12