Lines Matching refs:msg
235 struct rpc_msg msg; in clnt_broadcast() local
264 msg.rm_xid = xid = _create_xid (); in clnt_broadcast()
266 msg.rm_direction = CALL; in clnt_broadcast()
267 msg.rm_call.cb_rpcvers = RPC_MSG_VERSION; in clnt_broadcast()
268 msg.rm_call.cb_prog = PMAPPROG; in clnt_broadcast()
269 msg.rm_call.cb_vers = PMAPVERS; in clnt_broadcast()
270 msg.rm_call.cb_proc = PMAPPROC_CALLIT; in clnt_broadcast()
271 msg.rm_call.cb_cred = unix_auth->ah_cred; in clnt_broadcast()
272 msg.rm_call.cb_verf = unix_auth->ah_verf; in clnt_broadcast()
282 if ((!xdr_callmsg (xdrs, &msg)) in clnt_broadcast()
314 msg.acpted_rply.ar_verf = _null_auth; in clnt_broadcast()
315 msg.acpted_rply.ar_results.where = (caddr_t) & r; in clnt_broadcast()
316 msg.acpted_rply.ar_results.proc = (xdrproc_t) xdr_rmtcallres; in clnt_broadcast()
352 if (xdr_replymsg (xdrs, &msg)) in clnt_broadcast()
354 if (((uint32_t) msg.rm_xid == (uint32_t) xid) && in clnt_broadcast()
355 (msg.rm_reply.rp_stat == MSG_ACCEPTED) && in clnt_broadcast()
356 (msg.acpted_rply.ar_stat == SUCCESS)) in clnt_broadcast()
367 if ((uint32_t) msg.rm_xid == (uint32_t) xid) in clnt_broadcast()
373 msg.acpted_rply.ar_results.proc = (xdrproc_t)xdr_void; in clnt_broadcast()
374 (void) xdr_replymsg (xdrs, &msg); in clnt_broadcast()