Searched refs:au_origcred (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.3-release/lib/libc/rpc/
H A Dauth_unix.c81 struct opaque_auth au_origcred; /* original credentials */ member in struct:audata
130 au->au_origcred.oa_base = NULL;
149 au->au_origcred.oa_length = len = XDR_GETPOS(&xdrs);
150 au->au_origcred.oa_flavor = AUTH_UNIX;
152 au->au_origcred.oa_base = mem_alloc((u_int) len);
154 if ((au->au_origcred.oa_base = mem_alloc((u_int) len)) == NULL) {
159 memmove(au->au_origcred.oa_base, mymem, (size_t)len);
164 auth->ah_cred = au->au_origcred;
172 if (au->au_origcred.oa_base)
173 mem_free(au->au_origcred
[all...]
/freebsd-10.3-release/sys/rpc/
H A Dauth_unix.c93 struct opaque_auth au_origcred; /* original credentials */ member in struct:audata
192 au->au_origcred.oa_base = NULL;
205 au->au_origcred.oa_length = len = XDR_GETPOS(&xdrs);
206 au->au_origcred.oa_flavor = AUTH_UNIX;
207 au->au_origcred.oa_base = mem_alloc((u_int) len);
208 memcpy(au->au_origcred.oa_base, mymem, (size_t)len);
213 auth->ah_cred = au->au_origcred;
289 auth->ah_cred = au->au_origcred;
307 if (auth->ah_cred.oa_base == au->au_origcred.oa_base) {
314 xdrmem_create(&xdrs, au->au_origcred
[all...]

Completed in 49 milliseconds