Lines Matching refs:rply

361 	struct rpc_msg rply; 
365 rply.rm_direction = REPLY;
366 rply.rm_reply.rp_stat = MSG_ACCEPTED;
367 rply.acpted_rply.ar_verf = xprt->xp_verf;
368 rply.acpted_rply.ar_stat = SUCCESS;
369 rply.acpted_rply.ar_results.where = xdr_location;
370 rply.acpted_rply.ar_results.proc = xdr_results;
371 return (SVC_REPLY(xprt, &rply));
380 struct rpc_msg rply;
384 rply.rm_direction = REPLY;
385 rply.rm_reply.rp_stat = MSG_ACCEPTED;
386 rply.acpted_rply.ar_verf = xprt->xp_verf;
387 rply.acpted_rply.ar_stat = PROC_UNAVAIL;
388 SVC_REPLY(xprt, &rply);
397 struct rpc_msg rply;
401 rply.rm_direction = REPLY;
402 rply.rm_reply.rp_stat = MSG_ACCEPTED;
403 rply.acpted_rply.ar_verf = xprt->xp_verf;
404 rply.acpted_rply.ar_stat = GARBAGE_ARGS;
405 SVC_REPLY(xprt, &rply);
414 struct rpc_msg rply;
418 rply.rm_direction = REPLY;
419 rply.rm_reply.rp_stat = MSG_ACCEPTED;
420 rply.acpted_rply.ar_verf = xprt->xp_verf;
421 rply.acpted_rply.ar_stat = SYSTEM_ERR;
422 SVC_REPLY(xprt, &rply);
466 struct rpc_msg rply;
470 rply.rm_direction = REPLY;
471 rply.rm_reply.rp_stat = MSG_DENIED;
472 rply.rjcted_rply.rj_stat = AUTH_ERROR;
473 rply.rjcted_rply.rj_why = why;
474 SVC_REPLY(xprt, &rply);
495 struct rpc_msg rply;
499 rply.rm_direction = REPLY;
500 rply.rm_reply.rp_stat = MSG_ACCEPTED;
501 rply.acpted_rply.ar_verf = xprt->xp_verf;
502 rply.acpted_rply.ar_stat = PROG_UNAVAIL;
503 SVC_REPLY(xprt, &rply);
512 struct rpc_msg rply;
516 rply.rm_direction = REPLY;
517 rply.rm_reply.rp_stat = MSG_ACCEPTED;
518 rply.acpted_rply.ar_verf = xprt->xp_verf;
519 rply.acpted_rply.ar_stat = PROG_MISMATCH;
520 rply.acpted_rply.ar_vers.low = (u_int32_t)low_vers;
521 rply.acpted_rply.ar_vers.high = (u_int32_t)high_vers;
522 SVC_REPLY(xprt, &rply);