Lines Matching refs:rqstp
771 static void rpcauth_wrap_req_encode(kxdreproc_t encode, struct rpc_rqst *rqstp, in rpcauth_wrap_req_encode() argument
776 xdr_init_encode(&xdr, &rqstp->rq_snd_buf, data); in rpcauth_wrap_req_encode()
777 encode(rqstp, &xdr, obj); in rpcauth_wrap_req_encode()
781 rpcauth_wrap_req(struct rpc_task *task, kxdreproc_t encode, void *rqstp, in rpcauth_wrap_req() argument
789 return cred->cr_ops->crwrap_req(task, encode, rqstp, data, obj); in rpcauth_wrap_req()
791 rpcauth_wrap_req_encode(encode, rqstp, data, obj); in rpcauth_wrap_req()
796 rpcauth_unwrap_req_decode(kxdrdproc_t decode, struct rpc_rqst *rqstp, in rpcauth_unwrap_req_decode() argument
801 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, data); in rpcauth_unwrap_req_decode()
802 return decode(rqstp, &xdr, obj); in rpcauth_unwrap_req_decode()
806 rpcauth_unwrap_resp(struct rpc_task *task, kxdrdproc_t decode, void *rqstp, in rpcauth_unwrap_resp() argument
814 return cred->cr_ops->crunwrap_resp(task, decode, rqstp, in rpcauth_unwrap_resp()
817 return rpcauth_unwrap_req_decode(decode, rqstp, data, obj); in rpcauth_unwrap_resp()