Lines Matching refs:errp
198 struct rpc_err *errp; in clnt_bck_call() local
226 errp = &ext->rc_err; in clnt_bck_call()
229 errp = &ct->ct_error; in clnt_bck_call()
265 errp->re_status = stat = RPC_SUCCESS; in clnt_bck_call()
270 errp->re_status = stat = RPC_CANTENCODEARGS; in clnt_bck_call()
294 if (errp != &ct->ct_error) { in clnt_bck_call()
295 errp->re_errno = ct->ct_error.re_errno; in clnt_bck_call()
296 errp->re_status = RPC_CANTRECV; in clnt_bck_call()
346 errp->re_errno = error; in clnt_bck_call()
347 errp->re_status = stat = RPC_CANTSEND; in clnt_bck_call()
358 errp->re_errno = cr->cr_error; in clnt_bck_call()
359 errp->re_status = stat = RPC_CANTRECV; in clnt_bck_call()
372 errp->re_status = stat = RPC_TIMEDOUT; in clnt_bck_call()
387 errp->re_errno = error; in clnt_bck_call()
398 errp->re_status = stat; in clnt_bck_call()
407 errp->re_errno = cr->cr_error; in clnt_bck_call()
408 errp->re_status = stat = RPC_CANTRECV; in clnt_bck_call()
430 errp->re_status = stat = RPC_SUCCESS; in clnt_bck_call()
432 stat = _seterr_reply(&reply_msg, errp); in clnt_bck_call()
438 errp->re_status = stat = RPC_AUTHERROR; in clnt_bck_call()
439 errp->re_why = AUTH_INVALIDRESP; in clnt_bck_call()
461 errp->re_status = stat = RPC_CANTDECODERES; in clnt_bck_call()
490 clnt_bck_geterr(CLIENT *cl, struct rpc_err *errp) in clnt_bck_geterr() argument
494 *errp = ct->ct_error; in clnt_bck_geterr()