Searched refs:uncompLen (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/cmds/idmap/ |
D | scan.cpp | 133 uint32_t uncompLen = 0; in parse_apk() local 135 if (!zip->getEntryInfo(entry, &method, &uncompLen, NULL, NULL, NULL, NULL)) { in parse_apk() 148 char *buf = new char[uncompLen]; in parse_apk() 150 ALOGW("%s: failed to allocate %" PRIu32 " byte\n", __FUNCTION__, uncompLen); in parse_apk() 154 StreamingZipInflater inflater(dataMap, uncompLen); in parse_apk() 155 if (inflater.read(buf, uncompLen) < 0) { in parse_apk() 156 ALOGW("%s: failed to inflate %" PRIu32 " byte\n", __FUNCTION__, uncompLen); in parse_apk() 162 int priority = parse_manifest(buf, static_cast<size_t>(uncompLen), target_package_name); in parse_apk()
|
/frameworks/base/core/jni/ |
D | com_android_internal_content_NativeLibraryHelper.cpp | 159 uint32_t uncompLen; in sumFiles() local 161 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, NULL, NULL)) { in sumFiles() 165 *total += static_cast<size_t>(uncompLen); in sumFiles() 185 uint32_t uncompLen; in copyFileIfChanged() local 192 if (!zipFile->getEntryInfo(zipEntry, &method, &uncompLen, NULL, &offset, &when, &crc)) { in copyFileIfChanged() 238 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 | 241 void ZipEntry::setDataInfo(long uncompLen, long compLen, unsigned long crc32, in setDataInfo() argument 247 mCDE.mUncompressedSize = uncompLen; in setDataInfo()
|