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

/frameworks/base/cmds/idmap/
H A Dscan.cpp156 size_t uncompLen = 0; local
158 if (!zip->getEntryInfo(entry, &method, &uncompLen, NULL, NULL, NULL, NULL)) {
171 char *buf = new char[uncompLen];
173 ALOGW("%s: failed to allocate %d byte\n", __FUNCTION__, uncompLen);
177 StreamingZipInflater inflater(dataMap, uncompLen);
178 if (inflater.read(buf, uncompLen) < 0) {
179 ALOGW("%s: failed to inflate %d byte\n", __FUNCTION__, uncompLen);
185 int priority = parse_manifest(buf, uncompLen, target_package_name);
/frameworks/base/core/jni/
H A Dcom_android_internal_content_NativeLibraryHelper.cpp157 size_t uncompLen; local
159 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, NULL, NULL)) {
163 *total += uncompLen;
179 size_t uncompLen; local
184 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, &when, &crc)) {
212 if (!isFileDifferent(localFileName, uncompLen, modTime, crc, &st)) {
/frameworks/base/tools/aapt/
H A DZipEntry.h185 void setDataInfo(long uncompLen, long compLen, unsigned long crc32,
H A DZipEntry.cpp259 void ZipEntry::setDataInfo(long uncompLen, long compLen, unsigned long crc32, argument
265 mCDE.mUncompressedSize = uncompLen;

Completed in 2942 milliseconds