Lines Matching refs:rply

1095 	struct rpc_msg rply;
1097 rply.rm_direction = REPLY;
1098 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1099 rply.acpted_rply.ar_verf = xprt->xp_verf;
1100 rply.acpted_rply.ar_stat = SUCCESS;
1101 rply.acpted_rply.ar_results.where = xdr_location;
1102 rply.acpted_rply.ar_results.proc = xdr_results;
1103 return (SVC_REPLY((SVCXPRT *)xprt, &rply));
1112 struct rpc_msg rply;
1114 rply.rm_direction = REPLY;
1115 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1116 rply.acpted_rply.ar_verf = xprt->xp_verf;
1117 rply.acpted_rply.ar_stat = PROC_UNAVAIL;
1118 SVC_REPLY((SVCXPRT *)xprt, &rply);
1127 struct rpc_msg rply;
1129 rply.rm_direction = REPLY;
1130 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1131 rply.acpted_rply.ar_verf = xprt->xp_verf;
1132 rply.acpted_rply.ar_stat = GARBAGE_ARGS;
1133 SVC_REPLY((SVCXPRT *)xprt, &rply);
1142 struct rpc_msg rply;
1144 rply.rm_direction = REPLY;
1145 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1146 rply.acpted_rply.ar_verf = xprt->xp_verf;
1147 rply.acpted_rply.ar_stat = SYSTEM_ERR;
1148 SVC_REPLY((SVCXPRT *)xprt, &rply);
1190 struct rpc_msg rply;
1192 rply.rm_direction = REPLY;
1193 rply.rm_reply.rp_stat = MSG_DENIED;
1194 rply.rjcted_rply.rj_stat = AUTH_ERROR;
1195 rply.rjcted_rply.rj_why = why;
1196 SVC_REPLY((SVCXPRT *)xprt, &rply);
1214 struct rpc_msg rply;
1216 rply.rm_direction = REPLY;
1217 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1218 rply.acpted_rply.ar_verf = xprt->xp_verf;
1219 rply.acpted_rply.ar_stat = PROG_UNAVAIL;
1220 SVC_REPLY((SVCXPRT *)xprt, &rply);
1230 struct rpc_msg rply;
1232 rply.rm_direction = REPLY;
1233 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1234 rply.acpted_rply.ar_verf = xprt->xp_verf;
1235 rply.acpted_rply.ar_stat = PROG_MISMATCH;
1236 rply.acpted_rply.ar_vers.low = low_vers;
1237 rply.acpted_rply.ar_vers.high = high_vers;
1238 SVC_REPLY((SVCXPRT *)xprt, &rply);