Home | History | Annotate | Download | only in applypatch

Lines Matching full:temp_entries

213   ZipFileEntry* temp_entries = malloc(cdcount * sizeof(ZipFileEntry));
257 temp_entries[entrycount].data_offset = hoffset+30+nlen+xlen;
258 temp_entries[entrycount].deflate_len = clen;
259 temp_entries[entrycount].uncomp_len = ulen;
260 temp_entries[entrycount].filename = filename;
264 qsort(temp_entries, entrycount, sizeof(ZipFileEntry), fileentry_compare);
270 temp_entries[i].data_offset,
271 temp_entries[i].deflate_len,
272 temp_entries[i].uncomp_len,
273 temp_entries[i].filename,
274 temp_entries[i].filename);
297 if (nextentry < entrycount && pos == temp_entries[nextentry].data_offset) {
300 curr->deflate_len = temp_entries[nextentry].deflate_len;
302 curr->filename = temp_entries[nextentry].filename;
305 curr->len = temp_entries[nextentry].uncomp_len;
342 curr->len = temp_entries[nextentry].data_offset - pos;
355 free(temp_entries);