Searched refs:uncompLen (Results 1 – 5 of 5) sorted by relevance
/frameworks/native/libs/utils/ |
D | ZipFileRO.cpp | 508 size_t uncompLen = get4LE(ptr + kCDEUncompLen); in getEntryInfo() local 510 *pUncompLen = uncompLen; in getEntryInfo() 606 (off64_t)(dataOffset + uncompLen) > cdOffset) in getEntryInfo() 609 (long) dataOffset, (ZD_TYPE) uncompLen, (long) cdOffset); in getEntryInfo() 681 size_t uncompLen, compLen; in uncompressEntry() local 685 getEntryInfo(entry, &method, &uncompLen, &compLen, &offset, NULL, NULL); in uncompressEntry() 711 memcpy(buffer, ptr, uncompLen); in uncompressEntry() 713 if (!inflateBuffer(buffer, ptr, uncompLen, compLen)) in uncompressEntry() 741 size_t uncompLen, compLen; in uncompressEntry() local 745 getEntryInfo(entry, &method, &uncompLen, &compLen, &offset, NULL, NULL); in uncompressEntry() [all …]
|
/frameworks/base/core/jni/ |
D | com_android_internal_content_NativeLibraryHelper.cpp | 149 size_t uncompLen; in sumFiles() local 151 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, NULL, NULL)) { in sumFiles() 155 *total += uncompLen; in sumFiles() 171 size_t uncompLen; in copyFileIfChanged() local 176 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, &when, &crc)) { in copyFileIfChanged() 204 if (!isFileDifferent(localFileName, uncompLen, modTime, crc, &st)) { in copyFileIfChanged()
|
/frameworks/native/include/utils/ |
D | ZipFileRO.h | 169 size_t uncompLen, size_t compLen); 175 size_t uncompLen, size_t compLen);
|
/frameworks/base/tools/aapt/ |
D | ZipEntry.h | 185 void setDataInfo(long uncompLen, long compLen, unsigned long crc32,
|
D | ZipEntry.cpp | 259 void ZipEntry::setDataInfo(long uncompLen, long compLen, unsigned long crc32, in setDataInfo() argument 265 mCDE.mUncompressedSize = uncompLen; in setDataInfo()
|