Lines Matching refs:xdrs
30 static bool_t authnone_marshal(AUTH *client, XDR *xdrs);
63 register XDR *xdrs; in authnone_create() local
64 extern bool_t xdr_opaque_auth(XDR * xdrs, struct opaque_auth * ap); in authnone_create()
131 xdrs = &xdr_stream; in authnone_create()
132 xdrmem_create(xdrs, ap->marshalled_client, in authnone_create()
134 (void) xdr_opaque_auth(xdrs, &ap->no_client.ah_cred); in authnone_create()
135 (void) xdr_opaque_auth(xdrs, &ap->no_client.ah_verf); in authnone_create()
136 ap->mcnt = XDR_GETPOS(xdrs); in authnone_create()
137 XDR_DESTROY(xdrs); in authnone_create()
144 static bool_t authnone_marshal(AUTH *client, XDR *xdrs) in authnone_marshal() argument
150 return ((*xdrs->x_ops->x_putbytes)(xdrs, in authnone_marshal()