Lines Matching refs:errp
193 struct rpc_err *errp; in clnt_bck_call() local
221 errp = &ext->rc_err; in clnt_bck_call()
224 errp = &ct->ct_error; in clnt_bck_call()
260 errp->re_status = stat = RPC_SUCCESS; in clnt_bck_call()
265 errp->re_status = stat = RPC_CANTENCODEARGS; in clnt_bck_call()
289 if (errp != &ct->ct_error) { in clnt_bck_call()
290 errp->re_errno = ct->ct_error.re_errno; in clnt_bck_call()
291 errp->re_status = RPC_CANTRECV; in clnt_bck_call()
341 errp->re_errno = error; in clnt_bck_call()
342 errp->re_status = stat = RPC_CANTSEND; in clnt_bck_call()
353 errp->re_errno = cr->cr_error; in clnt_bck_call()
354 errp->re_status = stat = RPC_CANTRECV; in clnt_bck_call()
367 errp->re_status = stat = RPC_TIMEDOUT; in clnt_bck_call()
382 errp->re_errno = error; in clnt_bck_call()
393 errp->re_status = stat; in clnt_bck_call()
402 errp->re_errno = cr->cr_error; in clnt_bck_call()
403 errp->re_status = stat = RPC_CANTRECV; in clnt_bck_call()
425 errp->re_status = stat = RPC_SUCCESS; in clnt_bck_call()
427 stat = _seterr_reply(&reply_msg, errp); in clnt_bck_call()
433 errp->re_status = stat = RPC_AUTHERROR; in clnt_bck_call()
434 errp->re_why = AUTH_INVALIDRESP; in clnt_bck_call()
456 errp->re_status = stat = RPC_CANTDECODERES; in clnt_bck_call()
485 clnt_bck_geterr(CLIENT *cl, struct rpc_err *errp) in clnt_bck_geterr() argument
489 *errp = ct->ct_error; in clnt_bck_geterr()