Lines Matching refs:hdr
931 unsigned char hdr[5];933 hdr[0] = COMMAND;934 hdr[1] = (lno >> 24) & 0xFF;935 hdr[2] = (lno >> 16) & 0xFF;936 hdr[3] = (lno >> 8) & 0xFF;937 hdr[4] = lno & 0xFF;939 return (write(fd, hdr, 5) == 5 && write(fd, cmd, n) == n);