Lines Matching refs:auth

253 #define	AUTH_NEXTVERF(auth)		\  argument
254 ((*((auth)->ah_ops->ah_nextverf))(auth))
255 #define auth_nextverf(auth) \ argument
256 ((*((auth)->ah_ops->ah_nextverf))(auth))
260 #define AUTH_MARSHALL(auth, xdrs, cred) \ argument
261 ((*((auth)->ah_ops->ah_marshal))(auth, xdrs, cred))
262 #define auth_marshall(auth, xdrs, cred) \ argument
263 ((*((auth)->ah_ops->ah_marshal))(auth, xdrs, cred))
265 #define AUTH_MARSHALL(auth, xdrs) \ argument
266 ((*((auth)->ah_ops->ah_marshal))(auth, xdrs))
267 #define auth_marshall(auth, xdrs) \ argument
268 ((*((auth)->ah_ops->ah_marshal))(auth, xdrs))
272 #define AUTH_VALIDATE(auth, verfp) \ argument
273 ((*((auth)->ah_ops->ah_validate))((auth), verfp))
274 #define auth_validate(auth, verfp) \ argument
275 ((*((auth)->ah_ops->ah_validate))((auth), verfp))
278 #define AUTH_REFRESH(auth, msg, cr) \ argument
279 ((*((auth)->ah_ops->ah_refresh))(auth, msg, cr))
280 #define auth_refresh(auth, msg, cr) \ argument
281 ((*((auth)->ah_ops->ah_refresh))(auth, msg, cr))
283 #define AUTH_REFRESH(auth, msg) \ argument
284 ((*((auth)->ah_ops->ah_refresh))(auth, msg))
285 #define auth_refresh(auth, msg) \ argument
286 ((*((auth)->ah_ops->ah_refresh))(auth, msg))
289 #define AUTH_DESTROY(auth) \ argument
290 ((*((auth)->ah_ops->ah_destroy))(auth))
291 #define auth_destroy(auth) \ argument
292 ((*((auth)->ah_ops->ah_destroy))(auth))
302 #define AUTH_WRAP(auth, buf, buflen, xdrs, xfunc, xwhere) \ argument
303 ((*((auth)->ah_ops->ah_wrap))(auth, buf, buflen, \
305 #define auth_wrap(auth, buf, buflen, xdrs, xfunc, xwhere) \ argument
306 ((*((auth)->ah_ops->ah_wrap))(auth, buf, buflen, \
309 #define AUTH_UNWRAP(auth, xdrs, xfunc, xwhere) \ argument
310 ((*((auth)->ah_ops->ah_unwrap))(auth, xdrs, xfunc, xwhere))
311 #define auth_unwrap(auth, xdrs) \ argument
312 ((*((auth)->ah_ops->ah_unwrap))(auth, xdrs, xfunc, xwhere))