Searched refs:call_msg (Results 1 – 7 of 7) sorted by relevance
| /freebsd-13.1/lib/libc/rpc/ |
| H A D | clnt_raw.c | 95 struct rpc_msg call_msg; in clnt_raw_create() local 118 call_msg.rm_direction = CALL; in clnt_raw_create() 119 call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION; in clnt_raw_create() 121 call_msg.rm_call.cb_prog = (u_int32_t)prog; in clnt_raw_create() 122 call_msg.rm_call.cb_vers = (u_int32_t)vers; in clnt_raw_create() 124 if (! xdr_callhdr(xdrs, &call_msg)) in clnt_raw_create()
|
| H A D | clnt_vc.c | 173 struct rpc_msg call_msg; in clnt_vc_create() local 272 call_msg.rm_xid = ((u_int32_t)++disrupt) ^ __RPC_GETXID(&now); in clnt_vc_create() 273 call_msg.rm_direction = CALL; in clnt_vc_create() 274 call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION; in clnt_vc_create() 275 call_msg.rm_call.cb_prog = (u_int32_t)prog; in clnt_vc_create() 276 call_msg.rm_call.cb_vers = (u_int32_t)vers; in clnt_vc_create() 283 if (! xdr_callhdr(&(ct->ct_xdrs), &call_msg)) { in clnt_vc_create()
|
| H A D | clnt_dg.c | 173 struct rpc_msg call_msg; in clnt_dg_create() local 260 call_msg.rm_xid = __RPC_GETXID(&now); in clnt_dg_create() 261 call_msg.rm_call.cb_prog = program; in clnt_dg_create() 262 call_msg.rm_call.cb_vers = version; in clnt_dg_create() 265 if (! xdr_callhdr(&cu->cu_outxdrs, &call_msg)) { in clnt_dg_create()
|
| /freebsd-13.1/sys/rpc/ |
| H A D | clnt_bck.c | 129 struct rpc_msg call_msg; in clnt_bck_create() local 157 call_msg.rm_xid = ct->ct_xid; in clnt_bck_create() 158 call_msg.rm_direction = CALL; in clnt_bck_create() 159 call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION; in clnt_bck_create() 160 call_msg.rm_call.cb_prog = (uint32_t)prog; in clnt_bck_create() 161 call_msg.rm_call.cb_vers = (uint32_t)vers; in clnt_bck_create() 168 if (!xdr_callhdr(&xdrs, &call_msg)) in clnt_bck_create()
|
| H A D | clnt_vc.c | 145 struct rpc_msg call_msg; in clnt_vc_create() local 235 call_msg.rm_xid = ct->ct_xid; in clnt_vc_create() 236 call_msg.rm_direction = CALL; in clnt_vc_create() 237 call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION; in clnt_vc_create() 238 call_msg.rm_call.cb_prog = (uint32_t)prog; in clnt_vc_create() 239 call_msg.rm_call.cb_vers = (uint32_t)vers; in clnt_vc_create() 246 if (! xdr_callhdr(&xdrs, &call_msg)) { in clnt_vc_create()
|
| H A D | clnt_dg.c | 194 struct rpc_msg call_msg; in clnt_dg_create() local 254 call_msg.rm_xid = atomic_fetchadd_32(&rpc_xid, 1); in clnt_dg_create() 255 call_msg.rm_call.cb_prog = program; in clnt_dg_create() 256 call_msg.rm_call.cb_vers = version; in clnt_dg_create() 258 if (! xdr_callhdr(&xdrs, &call_msg)) { in clnt_dg_create()
|
| /freebsd-13.1/usr.sbin/rpcbind/ |
| H A D | rpcb_svc_com.c | 607 struct rpc_msg call_msg; in rpcbproc_callit_com() local 655 call_msg.rm_xid = 0; /* For error checking purposes */ in rpcbproc_callit_com() 764 versnum, &call_msg.rm_xid)) { in rpcbproc_callit_com() 790 *xidp, call_msg.rm_xid); in rpcbproc_callit_com() 792 call_msg.rm_direction = CALL; in rpcbproc_callit_com() 793 call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION; in rpcbproc_callit_com() 794 call_msg.rm_call.cb_prog = a.rmt_prog; in rpcbproc_callit_com() 795 call_msg.rm_call.cb_vers = a.rmt_vers; in rpcbproc_callit_com() 814 if (!xdr_callhdr(&outxdr, &call_msg)) { in rpcbproc_callit_com() 902 if (call_msg.rm_xid != 0) in rpcbproc_callit_com() [all …]
|