Lines Matching refs:rply

358 	struct rpc_msg rply;   in svc_sendreply()  local
362 rply.rm_direction = REPLY; in svc_sendreply()
363 rply.rm_reply.rp_stat = MSG_ACCEPTED; in svc_sendreply()
364 rply.acpted_rply.ar_verf = xprt->xp_verf; in svc_sendreply()
365 rply.acpted_rply.ar_stat = SUCCESS; in svc_sendreply()
366 rply.acpted_rply.ar_results.where = xdr_location; in svc_sendreply()
367 rply.acpted_rply.ar_results.proc = xdr_results; in svc_sendreply()
368 return (SVC_REPLY(xprt, &rply)); in svc_sendreply()
377 struct rpc_msg rply; in svcerr_noproc() local
381 rply.rm_direction = REPLY; in svcerr_noproc()
382 rply.rm_reply.rp_stat = MSG_ACCEPTED; in svcerr_noproc()
383 rply.acpted_rply.ar_verf = xprt->xp_verf; in svcerr_noproc()
384 rply.acpted_rply.ar_stat = PROC_UNAVAIL; in svcerr_noproc()
385 SVC_REPLY(xprt, &rply); in svcerr_noproc()
394 struct rpc_msg rply; in svcerr_decode() local
398 rply.rm_direction = REPLY; in svcerr_decode()
399 rply.rm_reply.rp_stat = MSG_ACCEPTED; in svcerr_decode()
400 rply.acpted_rply.ar_verf = xprt->xp_verf; in svcerr_decode()
401 rply.acpted_rply.ar_stat = GARBAGE_ARGS; in svcerr_decode()
402 SVC_REPLY(xprt, &rply); in svcerr_decode()
411 struct rpc_msg rply; in svcerr_systemerr() local
415 rply.rm_direction = REPLY; in svcerr_systemerr()
416 rply.rm_reply.rp_stat = MSG_ACCEPTED; in svcerr_systemerr()
417 rply.acpted_rply.ar_verf = xprt->xp_verf; in svcerr_systemerr()
418 rply.acpted_rply.ar_stat = SYSTEM_ERR; in svcerr_systemerr()
419 SVC_REPLY(xprt, &rply); in svcerr_systemerr()
463 struct rpc_msg rply; in svcerr_auth() local
467 rply.rm_direction = REPLY; in svcerr_auth()
468 rply.rm_reply.rp_stat = MSG_DENIED; in svcerr_auth()
469 rply.rjcted_rply.rj_stat = AUTH_ERROR; in svcerr_auth()
470 rply.rjcted_rply.rj_why = why; in svcerr_auth()
471 SVC_REPLY(xprt, &rply); in svcerr_auth()
492 struct rpc_msg rply; in svcerr_noprog() local
496 rply.rm_direction = REPLY; in svcerr_noprog()
497 rply.rm_reply.rp_stat = MSG_ACCEPTED; in svcerr_noprog()
498 rply.acpted_rply.ar_verf = xprt->xp_verf; in svcerr_noprog()
499 rply.acpted_rply.ar_stat = PROG_UNAVAIL; in svcerr_noprog()
500 SVC_REPLY(xprt, &rply); in svcerr_noprog()
509 struct rpc_msg rply; in svcerr_progvers() local
513 rply.rm_direction = REPLY; in svcerr_progvers()
514 rply.rm_reply.rp_stat = MSG_ACCEPTED; in svcerr_progvers()
515 rply.acpted_rply.ar_verf = xprt->xp_verf; in svcerr_progvers()
516 rply.acpted_rply.ar_stat = PROG_MISMATCH; in svcerr_progvers()
517 rply.acpted_rply.ar_vers.low = (u_int32_t)low_vers; in svcerr_progvers()
518 rply.acpted_rply.ar_vers.high = (u_int32_t)high_vers; in svcerr_progvers()
519 SVC_REPLY(xprt, &rply); in svcerr_progvers()