Searched refs:uncompLen (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/cmds/idmap/ |
D | scan.cpp | 156 size_t uncompLen = 0; in parse_apk() local 158 if (!zip->getEntryInfo(entry, &method, &uncompLen, NULL, NULL, NULL, NULL)) { in parse_apk() 171 char *buf = new char[uncompLen]; in parse_apk() 173 ALOGW("%s: failed to allocate %d byte\n", __FUNCTION__, uncompLen); in parse_apk() 177 StreamingZipInflater inflater(dataMap, uncompLen); in parse_apk() 178 if (inflater.read(buf, uncompLen) < 0) { in parse_apk() 179 ALOGW("%s: failed to inflate %d byte\n", __FUNCTION__, uncompLen); in parse_apk() 185 int priority = parse_manifest(buf, uncompLen, target_package_name); in parse_apk()
|
/frameworks/base/core/jni/ |
D | com_android_internal_content_NativeLibraryHelper.cpp | 157 size_t uncompLen; in sumFiles() local 159 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, NULL, NULL)) { in sumFiles() 163 *total += uncompLen; in sumFiles() 179 size_t uncompLen; in copyFileIfChanged() local 184 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, &when, &crc)) { in copyFileIfChanged() 212 if (!isFileDifferent(localFileName, uncompLen, modTime, crc, &st)) { in copyFileIfChanged()
|
/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()
|