Lines Matching refs:sendsz
606 u_int sendsz; in rpcbproc_callit_com() local
623 sendsz = __rpc_get_t_size(si.si_af, si.si_proto, UDPMSGSIZE); in rpcbproc_callit_com()
624 if (sendsz == 0) { /* data transfer not supported */ in rpcbproc_callit_com()
632 sendsz = roundup(sendsz, 4); in rpcbproc_callit_com()
633 if (sendsz > RPC_BUF_MAX) { in rpcbproc_callit_com()
635 buf_alloc = alloca(sendsz); /* not in IDR2? */ in rpcbproc_callit_com()
637 buf_alloc = malloc(sendsz); in rpcbproc_callit_com()
793 if (sendsz > RPC_BUF_MAX) { in rpcbproc_callit_com()
795 outbuf_alloc = alloca(sendsz); /* not in IDR2? */ in rpcbproc_callit_com()
797 outbuf_alloc = malloc(sendsz); in rpcbproc_callit_com()
807 xdrmem_create(&outxdr, outbuf_alloc, sendsz, XDR_ENCODE); in rpcbproc_callit_com()
809 xdrmem_create(&outxdr, outbuf, sendsz, XDR_ENCODE); in rpcbproc_callit_com()