Lines Matching refs:rply

1097 	struct rpc_msg rply;
1099 rply.rm_direction = REPLY;
1100 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1101 rply.acpted_rply.ar_verf = xprt->xp_verf;
1102 rply.acpted_rply.ar_stat = SUCCESS;
1103 rply.acpted_rply.ar_results.where = xdr_location;
1104 rply.acpted_rply.ar_results.proc = xdr_results;
1105 return (SVC_REPLY((SVCXPRT *)xprt, &rply));
1114 struct rpc_msg rply;
1116 rply.rm_direction = REPLY;
1117 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1118 rply.acpted_rply.ar_verf = xprt->xp_verf;
1119 rply.acpted_rply.ar_stat = PROC_UNAVAIL;
1120 SVC_REPLY((SVCXPRT *)xprt, &rply);
1129 struct rpc_msg rply;
1131 rply.rm_direction = REPLY;
1132 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1133 rply.acpted_rply.ar_verf = xprt->xp_verf;
1134 rply.acpted_rply.ar_stat = GARBAGE_ARGS;
1135 SVC_REPLY((SVCXPRT *)xprt, &rply);
1144 struct rpc_msg rply;
1146 rply.rm_direction = REPLY;
1147 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1148 rply.acpted_rply.ar_verf = xprt->xp_verf;
1149 rply.acpted_rply.ar_stat = SYSTEM_ERR;
1150 SVC_REPLY((SVCXPRT *)xprt, &rply);
1192 struct rpc_msg rply;
1194 rply.rm_direction = REPLY;
1195 rply.rm_reply.rp_stat = MSG_DENIED;
1196 rply.rjcted_rply.rj_stat = AUTH_ERROR;
1197 rply.rjcted_rply.rj_why = why;
1198 SVC_REPLY((SVCXPRT *)xprt, &rply);
1216 struct rpc_msg rply;
1218 rply.rm_direction = REPLY;
1219 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1220 rply.acpted_rply.ar_verf = xprt->xp_verf;
1221 rply.acpted_rply.ar_stat = PROG_UNAVAIL;
1222 SVC_REPLY((SVCXPRT *)xprt, &rply);
1232 struct rpc_msg rply;
1234 rply.rm_direction = REPLY;
1235 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1236 rply.acpted_rply.ar_verf = xprt->xp_verf;
1237 rply.acpted_rply.ar_stat = PROG_MISMATCH;
1238 rply.acpted_rply.ar_vers.low = low_vers;
1239 rply.acpted_rply.ar_vers.high = high_vers;
1240 SVC_REPLY((SVCXPRT *)xprt, &rply);