Home | History | Annotate | Download | only in librpc

Lines Matching refs:out_next

65     xdr->out_next = (RPC_OFFSET+2)*sizeof(uint32);
90 if (r_write(xdr->fd, (void *)xdr->out_msg, xdr->out_next) !=
91 xdr->out_next)
114 if (xdr->out_next >= RPCROUTER_MSGSIZE_MAX - 3) return FALSE;
115 *(int32 *)(xdr->out_msg + xdr->out_next) = htonl(*value);
116 xdr->out_next += 4;
152 if (xdr->out_next + len > RPCROUTER_MSGSIZE_MAX) return FALSE;
154 xdr->out_msg[xdr->out_next++] = *buf++;
155 while(xdr->out_next % 4)
156 xdr->out_msg[xdr->out_next++] = 0;