Lines Matching refs:sendsz
622 u_int sendsz;
639 sendsz = __rpc_get_t_size(si.si_af, si.si_proto, UDPMSGSIZE);
640 if (sendsz == 0) { /* data transfer not supported */
648 sendsz = roundup(sendsz, 4);
649 if (sendsz > RPC_BUF_MAX) {
651 buf_alloc = alloca(sendsz); /* not in IDR2? */
653 buf_alloc = malloc(sendsz);
807 if (sendsz > RPC_BUF_MAX) {
809 outbuf_alloc = alloca(sendsz); /* not in IDR2? */
811 outbuf_alloc = malloc(sendsz);
819 xdrmem_create(&outxdr, outbuf_alloc, sendsz, XDR_ENCODE);
821 xdrmem_create(&outxdr, outbuf, sendsz, XDR_ENCODE);