Home | History | Annotate | Download | only in cups

Lines Matching defs:header

1206 	  * header...
1209 unsigned char header[10]; /* gzip file header */
1214 header[0] = 0x1f;
1215 header[1] = 0x8b;
1216 header[2] = Z_DEFLATED;
1217 header[3] = 0;
1218 header[4] = (unsigned char)curtime;
1219 header[5] = (unsigned char)(curtime >> 8);
1220 header[6] = (unsigned char)(curtime >> 16);
1221 header[7] = (unsigned char)(curtime >> 24);
1222 header[8] = 0;
1223 header[9] = 0x03;
1225 cups_write(fp, (char *)header, 10);
2222 * Parse header junk: extra data, original name, and comment...
2240 DEBUG_puts("9cups_fill: Extra gzip header data missing, returning -1.");
2257 DEBUG_puts("9cups_fill: Extra gzip header data does not fit in initial buffer, returning -1.");
2283 DEBUG_puts("9cups_fill: Original filename in gzip header data does not fit in initial buffer, returning -1.");
2309 DEBUG_puts("9cups_fill: Comment in gzip header data does not fit in initial buffer, returning -1.");
2321 * Skip header CRC data...
2332 DEBUG_puts("9cups_fill: Header CRC in gzip header data does not fit in initial buffer, returning -1.");
2477 * file header...