Searched refs:uncompLen (Results 1 – 2 of 2) sorted by relevance
/dalvik/libdex/ |
D | ZipArchive.c | 503 static bool inflateToFile(int fd, const void* inBuf, long uncompLen, in inflateToFile() argument 579 if ((long) zstream.total_out != uncompLen) { in inflateToFile() 581 zstream.total_out, uncompLen); in inflateToFile() 610 long uncompLen, compLen; in dexZipExtractEntryToFile() local 613 if (!dexZipGetEntryInfo(pArchive, entry, &method, &uncompLen, &compLen, in dexZipExtractEntryToFile() 622 actual = write(fd, basePtr + offset, uncompLen); in dexZipExtractEntryToFile() 626 } else if (actual != uncompLen) { in dexZipExtractEntryToFile() 628 (int) actual, uncompLen); in dexZipExtractEntryToFile() 634 if (!inflateToFile(fd, basePtr+offset, uncompLen, compLen)) in dexZipExtractEntryToFile()
|
/dalvik/dexopt/ |
D | OptMain.c | 59 long uncompLen, modWhen, crc32; in extractAndProcessZip() local 103 if (!dexZipGetEntryInfo(&zippy, zipEntry, NULL, &uncompLen, NULL, NULL, in extractAndProcessZip() 110 uncompLen = uncompLen; in extractAndProcessZip() 168 if (!dvmContinueOptimization(cacheFd, dexOffset, uncompLen, debugFileName, in extractAndProcessZip()
|