HomeSort by relevance Sort by last modified time
    Searched refs:uncompLen (Results 1 - 11 of 11) sorted by null

  /bootable/recovery/minzip/
Zip.h 37 long uncompLen;
92 return pEntry->uncompLen;
Zip.c 95 pEntry->compLen, pEntry->uncompLen, pEntry->compression);
334 pEntry->uncompLen = get4LE(ptr + CENLEN);
501 return processFunction(pArchive->addr + pEntry->offset, pEntry->uncompLen, cookie);
582 if (result != pEntry->uncompLen) {
585 result, pEntry->uncompLen);
  /frameworks/base/cmds/idmap/
scan.cpp 134 uint32_t uncompLen = 0;
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);
  /bootable/recovery/updater/
updater.c 92 char* script = malloc(script_entry->uncompLen+1);
93 if (!mzReadZipEntry(&za, script_entry, script, script_entry->uncompLen)) {
97 script[script_entry->uncompLen] = '\0';
  /frameworks/base/core/jni/
com_android_internal_content_NativeLibraryHelper.cpp 159 uint32_t uncompLen;
161 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, NULL, NULL)) {
165 *total += static_cast<size_t>(uncompLen);
185 uint32_t uncompLen;
192 if (!zipFile->getEntryInfo(zipEntry, &method, &uncompLen, NULL, &offset, &when, &crc)) {
238 if (!isFileDifferent(localFileName, uncompLen, modTime, crc, &st)) {
  /build/tools/zipalign/
ZipEntry.h 180 void setDataInfo(long uncompLen, long compLen, unsigned long crc32,
ZipEntry.cpp 259 void ZipEntry::setDataInfo(long uncompLen, long compLen, unsigned long crc32,
265 mCDE.mUncompressedSize = uncompLen;
  /frameworks/base/tools/aapt/
ZipEntry.h 185 void setDataInfo(long uncompLen, long compLen, unsigned long crc32,
ZipEntry.cpp 241 void ZipEntry::setDataInfo(long uncompLen, long compLen, unsigned long crc32,
247 mCDE.mUncompressedSize = uncompLen;
  /frameworks/base/tools/aapt2/
ZipEntry.h 188 void setDataInfo(long uncompLen, long compLen, unsigned long crc32,
ZipEntry.cpp 249 void ZipEntry::setDataInfo(long uncompLen, long compLen, unsigned long crc32,
255 mCDE.mUncompressedSize = uncompLen;

Completed in 215 milliseconds