Lines Matching refs:holesdata
2629 char *holesdata;
2635 if ((holesdata = e_zalloc(E_NORMAL, holesdata_sz)) == NULL) {
2645 (void) read_bytes(-1, holesdata, holesdata_sz, CPIOBSZ, data_in_info);
2649 if (holesdata[holesdata_sz - 1] != '\0') {
2651 free(holesdata);
2655 if (parse_holesdata(holes, holesdata) != 0)
2662 free(holesdata);
3178 write_ancillary(holes->holesdata,
4976 * Read header of holesdata to get original file size.
4978 * with OCt before data_in() extracts the holesdata. data_in()
4979 * actually doesn't extract the holesdata since proc_mode will be
4984 char holesdata[MIN_HOLES_HDRSIZE + 1];
4987 (void) memcpy(holesdata, Buffr.b_out_p, MIN_HOLES_HDRSIZE);
4988 holesdata[MIN_HOLES_HDRSIZE] = '\0';
4990 Gen.g_holes = read_holes_header(holesdata, Gen.g_filesz);