Home
last modified time | relevance | path

Searched refs:ct_mpos (Results 1 – 4 of 4) sorted by relevance

/freebsd/lib/libc/rpc/
H A Dclnt_vc.c113 u_int ct_mpos; /* pos after marshal */ member
284 ct->ct_mpos = XDR_GETPOS(&(ct->ct_xdrs)); in clnt_vc_create()
286 assert(ct->ct_mpos + sizeof(uint32_t) <= MCALL_MSG_SIZE); in clnt_vc_create()
351 if ((! XDR_PUTBYTES(xdrs, ct->ct_u.ct_mcallc, ct->ct_mpos)) || in clnt_vc_call()
362 *(uint32_t *) &ct->ct_u.ct_mcallc[ct->ct_mpos] = htonl(proc); in clnt_vc_call()
364 ct->ct_mpos + sizeof(uint32_t), in clnt_vc_call()
/freebsd/sys/rpc/
H A Dclnt_bck.c163 ct->ct_mpos = XDR_GETPOS(&xdrs); in clnt_bck_create()
248 KASSERT(ct->ct_mpos + sizeof(uint32_t) <= MHLEN, in clnt_bck_call()
250 bcopy(ct->ct_mcallc, mreq->m_data, ct->ct_mpos); in clnt_bck_call()
251 mreq->m_len = ct->ct_mpos; in clnt_bck_call()
H A Dkrpc.h108 size_t ct_mpos; /* pos after marshal */ member
H A Dclnt_vc.c243 ct->ct_mpos = XDR_GETPOS(&xdrs); in clnt_vc_create()
364 KASSERT(ct->ct_mpos + sizeof(uint32_t) <= MHLEN, in clnt_vc_call()
366 bcopy(ct->ct_mcallc, mreq->m_data, ct->ct_mpos); in clnt_vc_call()
367 mreq->m_len = ct->ct_mpos; in clnt_vc_call()