Lines Matching defs:len_buf
574 unsigned char len_buf[4];
598 if ((cc = krb5_net_read(kcmd_context, fd, (char *)len_buf, 4)) != 4) {
604 rd_len = ((len_buf[0] << 24) | (len_buf[1] << 16) |
605 (len_buf[2] << 8) | len_buf[3]);
724 unsigned char *len_buf = (unsigned char *)tmpbuf;
775 len_buf[0] = (len & 0xff000000) >> 24;
776 len_buf[1] = (len & 0xff0000) >> 16;
777 len_buf[2] = (len & 0xff00) >> 8;
778 len_buf[3] = (len & 0xff);
779 (void) write(fd, len_buf, 4);