Home
last modified time | relevance | path

Searched refs:reply_msg (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/sys/rpc/
H A Dclnt_bck.c203 struct rpc_msg reply_msg; in clnt_bck_call() local
339 reply_msg.acpted_rply.ar_verf.oa_flavor = AUTH_NULL; in clnt_bck_call()
340 reply_msg.acpted_rply.ar_verf.oa_base = cr->cr_verf; in clnt_bck_call()
341 reply_msg.acpted_rply.ar_verf.oa_length = 0; in clnt_bck_call()
342 reply_msg.acpted_rply.ar_results.where = NULL; in clnt_bck_call()
426 ok = xdr_replymsg(&xdrs, &reply_msg); in clnt_bck_call()
430 if ((reply_msg.rm_reply.rp_stat == MSG_ACCEPTED) && in clnt_bck_call()
431 (reply_msg.acpted_rply.ar_stat == SUCCESS)) in clnt_bck_call()
434 stat = _seterr_reply(&reply_msg, errp); in clnt_bck_call()
439 &reply_msg.acpted_rply.ar_verf, &results)) { in clnt_bck_call()
[all …]
H A Dclnt_dg.c345 struct rpc_msg reply_msg; in clnt_dg_call() local
490 reply_msg.acpted_rply.ar_verf.oa_flavor = AUTH_NULL; in clnt_dg_call()
491 reply_msg.acpted_rply.ar_verf.oa_base = cr->cr_verf; in clnt_dg_call()
492 reply_msg.acpted_rply.ar_verf.oa_length = 0; in clnt_dg_call()
493 reply_msg.acpted_rply.ar_results.where = NULL; in clnt_dg_call()
697 ok = xdr_replymsg(&xdrs, &reply_msg); in clnt_dg_call()
701 if ((reply_msg.rm_reply.rp_stat == MSG_ACCEPTED) && in clnt_dg_call()
702 (reply_msg.acpted_rply.ar_stat == SUCCESS)) in clnt_dg_call()
705 stat = _seterr_reply(&reply_msg, &(cu->cu_error)); in clnt_dg_call()
710 &reply_msg.acpted_rply.ar_verf, in clnt_dg_call()
[all …]
H A Dclnt_vc.c308 struct rpc_msg reply_msg; in clnt_vc_call() local
460 reply_msg.acpted_rply.ar_verf.oa_flavor = AUTH_NULL; in clnt_vc_call()
461 reply_msg.acpted_rply.ar_verf.oa_base = cr->cr_verf; in clnt_vc_call()
462 reply_msg.acpted_rply.ar_verf.oa_length = 0; in clnt_vc_call()
463 reply_msg.acpted_rply.ar_results.where = NULL; in clnt_vc_call()
547 ok = xdr_replymsg(&xdrs, &reply_msg); in clnt_vc_call()
551 if ((reply_msg.rm_reply.rp_stat == MSG_ACCEPTED) && in clnt_vc_call()
552 (reply_msg.acpted_rply.ar_stat == SUCCESS)) in clnt_vc_call()
555 stat = _seterr_reply(&reply_msg, errp); in clnt_vc_call()
560 &reply_msg.acpted_rply.ar_verf, in clnt_vc_call()
[all …]
/freebsd-13.1/lib/libc/rpc/
H A Dclnt_dg.c324 struct rpc_msg reply_msg; in clnt_dg_call() local
448 reply_msg.acpted_rply.ar_verf = _null_auth; in clnt_dg_call()
450 reply_msg.acpted_rply.ar_results.where = resultsp; in clnt_dg_call()
451 reply_msg.acpted_rply.ar_results.proc = xresults; in clnt_dg_call()
453 reply_msg.acpted_rply.ar_results.where = NULL; in clnt_dg_call()
536 ok = xdr_replymsg(&reply_xdrs, &reply_msg); in clnt_dg_call()
540 (reply_msg.acpted_rply.ar_stat == SUCCESS)) in clnt_dg_call()
543 _seterr_reply(&reply_msg, &(cu->cu_error)); in clnt_dg_call()
547 &reply_msg.acpted_rply.ar_verf)) { in clnt_dg_call()
583 &(reply_msg.acpted_rply.ar_verf)); in clnt_dg_call()
[all …]
H A Dclnt_vc.c323 struct rpc_msg reply_msg; in clnt_vc_call() local
405 reply_msg.acpted_rply.ar_verf = _null_auth; in clnt_vc_call()
406 reply_msg.acpted_rply.ar_results.where = NULL; in clnt_vc_call()
407 reply_msg.acpted_rply.ar_results.proc = (xdrproc_t)xdr_void; in clnt_vc_call()
413 if (! xdr_replymsg(xdrs, &reply_msg)) { in clnt_vc_call()
419 if (reply_msg.rm_xid == x_id) in clnt_vc_call()
426 _seterr_reply(&reply_msg, &(ct->ct_error)); in clnt_vc_call()
429 &reply_msg.acpted_rply.ar_verf)) { in clnt_vc_call()
446 if (reply_msg.acpted_rply.ar_verf.oa_base != NULL) { in clnt_vc_call()
449 &(reply_msg.acpted_rply.ar_verf)); in clnt_vc_call()
[all …]
/freebsd-13.1/usr.sbin/rpcbind/
H A Drpcb_svc_com.c1235 struct rpc_msg reply_msg; in handle_reply() local
1263 reply_msg.acpted_rply.ar_verf = _null_auth; in handle_reply()
1264 reply_msg.acpted_rply.ar_results.where = 0; in handle_reply()
1265 reply_msg.acpted_rply.ar_results.proc = (xdrproc_t) xdr_void; in handle_reply()
1268 if (!xdr_replymsg(&reply_xdrs, &reply_msg)) { in handle_reply()
1274 fi = forward_find(reply_msg.rm_xid); in handle_reply()
1278 reply_msg.rm_xid, fi); in handle_reply()
1284 _seterr_reply(&reply_msg, &reply_error); in handle_reply()
1313 if (reply_msg.rm_xid == 0) { in handle_reply()
1320 (void) free_slot_by_xid(reply_msg.rm_xid); in handle_reply()