Home
last modified time | relevance | path

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

/freebsd-14.2/sys/rpc/
H A Dclnt_bck.c201 struct rpc_msg reply_msg; in clnt_bck_call() local
337 reply_msg.acpted_rply.ar_verf.oa_flavor = AUTH_NULL; in clnt_bck_call()
338 reply_msg.acpted_rply.ar_verf.oa_base = cr->cr_verf; in clnt_bck_call()
339 reply_msg.acpted_rply.ar_verf.oa_length = 0; in clnt_bck_call()
340 reply_msg.acpted_rply.ar_results.where = NULL; in clnt_bck_call()
424 ok = xdr_replymsg(&xdrs, &reply_msg); in clnt_bck_call()
428 if ((reply_msg.rm_reply.rp_stat == MSG_ACCEPTED) && in clnt_bck_call()
429 (reply_msg.acpted_rply.ar_stat == SUCCESS)) in clnt_bck_call()
432 stat = _seterr_reply(&reply_msg, errp); in clnt_bck_call()
437 &reply_msg.acpted_rply.ar_verf, &results)) { in clnt_bck_call()
[all …]
H A Dclnt_dg.c343 struct rpc_msg reply_msg; in clnt_dg_call() local
488 reply_msg.acpted_rply.ar_verf.oa_flavor = AUTH_NULL; in clnt_dg_call()
489 reply_msg.acpted_rply.ar_verf.oa_base = cr->cr_verf; in clnt_dg_call()
490 reply_msg.acpted_rply.ar_verf.oa_length = 0; in clnt_dg_call()
491 reply_msg.acpted_rply.ar_results.where = NULL; in clnt_dg_call()
695 ok = xdr_replymsg(&xdrs, &reply_msg); in clnt_dg_call()
699 if ((reply_msg.rm_reply.rp_stat == MSG_ACCEPTED) && in clnt_dg_call()
700 (reply_msg.acpted_rply.ar_stat == SUCCESS)) in clnt_dg_call()
703 stat = _seterr_reply(&reply_msg, &(cu->cu_error)); in clnt_dg_call()
708 &reply_msg.acpted_rply.ar_verf, in clnt_dg_call()
[all …]
H A Dclnt_vc.c304 struct rpc_msg reply_msg; in clnt_vc_call() local
458 reply_msg.acpted_rply.ar_verf.oa_flavor = AUTH_NULL; in clnt_vc_call()
459 reply_msg.acpted_rply.ar_verf.oa_base = cr->cr_verf; in clnt_vc_call()
460 reply_msg.acpted_rply.ar_verf.oa_length = 0; in clnt_vc_call()
461 reply_msg.acpted_rply.ar_results.where = NULL; in clnt_vc_call()
545 ok = xdr_replymsg(&xdrs, &reply_msg); in clnt_vc_call()
549 if ((reply_msg.rm_reply.rp_stat == MSG_ACCEPTED) && in clnt_vc_call()
550 (reply_msg.acpted_rply.ar_stat == SUCCESS)) in clnt_vc_call()
553 stat = _seterr_reply(&reply_msg, errp); in clnt_vc_call()
558 &reply_msg.acpted_rply.ar_verf, in clnt_vc_call()
[all …]
/freebsd-14.2/lib/libc/rpc/
H A Dclnt_dg.c324 struct rpc_msg reply_msg; in clnt_dg_call() local
444 reply_msg.acpted_rply.ar_verf = _null_auth; in clnt_dg_call()
446 reply_msg.acpted_rply.ar_results.where = resultsp; in clnt_dg_call()
447 reply_msg.acpted_rply.ar_results.proc = xresults; in clnt_dg_call()
449 reply_msg.acpted_rply.ar_results.where = NULL; in clnt_dg_call()
532 ok = xdr_replymsg(&reply_xdrs, &reply_msg); in clnt_dg_call()
536 (reply_msg.acpted_rply.ar_stat == SUCCESS)) in clnt_dg_call()
539 _seterr_reply(&reply_msg, &(cu->cu_error)); in clnt_dg_call()
543 &reply_msg.acpted_rply.ar_verf)) { in clnt_dg_call()
579 &(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
400 reply_msg.acpted_rply.ar_verf = _null_auth; in clnt_vc_call()
401 reply_msg.acpted_rply.ar_results.where = NULL; in clnt_vc_call()
402 reply_msg.acpted_rply.ar_results.proc = (xdrproc_t)xdr_void; in clnt_vc_call()
408 if (! xdr_replymsg(xdrs, &reply_msg)) { in clnt_vc_call()
414 if (reply_msg.rm_xid == x_id) in clnt_vc_call()
421 _seterr_reply(&reply_msg, &(ct->ct_error)); in clnt_vc_call()
424 &reply_msg.acpted_rply.ar_verf)) { in clnt_vc_call()
441 if (reply_msg.acpted_rply.ar_verf.oa_base != NULL) { in clnt_vc_call()
444 &(reply_msg.acpted_rply.ar_verf)); in clnt_vc_call()
[all …]
/freebsd-14.2/usr.sbin/rpcbind/
H A Drpcb_svc_com.c1233 struct rpc_msg reply_msg; in handle_reply() local
1261 reply_msg.acpted_rply.ar_verf = _null_auth; in handle_reply()
1262 reply_msg.acpted_rply.ar_results.where = 0; in handle_reply()
1263 reply_msg.acpted_rply.ar_results.proc = (xdrproc_t) xdr_void; in handle_reply()
1266 if (!xdr_replymsg(&reply_xdrs, &reply_msg)) { in handle_reply()
1272 fi = forward_find(reply_msg.rm_xid); in handle_reply()
1276 reply_msg.rm_xid, fi); in handle_reply()
1282 _seterr_reply(&reply_msg, &reply_error); in handle_reply()
1311 if (reply_msg.rm_xid == 0) { in handle_reply()
1318 (void) free_slot_by_xid(reply_msg.rm_xid); in handle_reply()