Searched defs:uncompLen (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/tools/aapt/
H A DZipEntry.cpp241 void ZipEntry::setDataInfo(long uncompLen, long compLen, unsigned long crc32, argument
247 mCDE.mUncompressedSize = uncompLen;
/frameworks/base/tools/aapt2/
H A DZipEntry.cpp249 void ZipEntry::setDataInfo(long uncompLen, long compLen, unsigned long crc32, argument
255 mCDE.mUncompressedSize = uncompLen;
/frameworks/base/cmds/idmap/
H A Dscan.cpp134 uint32_t uncompLen = 0; local
136 if (!zip->getEntryInfo(entry, &method, &uncompLen, NULL, NULL, NULL, NULL)) {
149 char *buf = new char[uncompLen];
151 ALOGW("%s: failed to allocate %" PRIu32 " byte\n", __FUNCTION__, uncompLen);
155 StreamingZipInflater inflater(dataMap, uncompLen);
156 if (inflater.read(buf, uncompLen) < 0) {
157 ALOGW("%s: failed to inflate %" PRIu32 " byte\n", __FUNCTION__, uncompLen);
163 int priority = parse_manifest(buf, static_cast<size_t>(uncompLen), target_package_name);
/frameworks/base/core/jni/
H A Dcom_android_internal_content_NativeLibraryHelper.cpp159 uint32_t uncompLen; local
161 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, NULL, NULL)) {
165 *total += static_cast<size_t>(uncompLen);
185 uint32_t uncompLen; local
192 if (!zipFile->getEntryInfo(zipEntry, &method, &uncompLen, NULL, &offset, &when, &crc)) {
238 if (!isFileDifferent(localFileName, uncompLen, modTime, crc, &st)) {

Completed in 68 milliseconds