Lines Matching refs:padBytes
685 int padBytes; in WriteToClient() local
751 padBytes = padding_for_int32(count); in WriteToClient()
758 replyinfo.dataLenBytes = count + padBytes; in WriteToClient()
759 replyinfo.padBytes = padBytes; in WriteToClient()
761 who->replyBytesRemaining -= count + padBytes; in WriteToClient()
773 bytesleft = (replylen * 4) + SIZEOF(xReply) - count - padBytes; in WriteToClient()
782 who->replyBytesRemaining -= (count + padBytes); in WriteToClient()
789 (replylen * 4) + SIZEOF(xReply) - count - padBytes; in WriteToClient()
793 if (oco->count == 0 || oco->count + count + padBytes > oco->size) { in WriteToClient()
807 if (padBytes) { in WriteToClient()
808 memset(oco->buf + oco->count, '\0', padBytes); in WriteToClient()
809 oco->count += padBytes; in WriteToClient()