Home
last modified time | relevance | path

Searched refs:uncompLen (Results 1 – 4 of 4) sorted by relevance

/bootable/recovery/updater/
Dupdater.c68 char* script = malloc(script_entry->uncompLen+1); in main()
69 if (!mzReadZipEntry(&za, script_entry, script, script_entry->uncompLen)) { in main()
73 script[script_entry->uncompLen] = '\0'; in main()
/bootable/recovery/minzip/
DZip.h30 long uncompLen; member
121 return pEntry->uncompLen; in mzGetZipEntryUncompLen()
DZip.c95 pEntry->compLen, pEntry->uncompLen, pEntry->compression);
338 pEntry->uncompLen = get4LE(ptr + CENLEN); in parseZipArchive()
653 if (result != pEntry->uncompLen) { in processDeflatedEntry()
656 result, pEntry->uncompLen); in processDeflatedEntry()
1041 if (pEntry->uncompLen == 0) { in mzExtractRecursive()
1047 char *linkTarget = malloc(pEntry->uncompLen + 1); in mzExtractRecursive()
1053 pEntry->uncompLen); in mzExtractRecursive()
1060 linkTarget[pEntry->uncompLen] = '\0'; in mzExtractRecursive()
/bootable/recovery/
Dinstall.c53 data_size = entry->uncompLen; in handle_firmware_update()