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

  /bootable/recovery/minzip/
Zip.h 37 long uncompLen;
128 return pEntry->uncompLen;
  /frameworks/base/cmds/idmap/
scan.cpp 156 size_t uncompLen = 0;
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/
com_android_internal_content_NativeLibraryHelper.cpp 157 size_t uncompLen;
159 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, NULL, NULL)) {
163 *total += uncompLen;
179 size_t uncompLen;
184 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, &when, &crc)) {
212 if (!isFileDifferent(localFileName, uncompLen, modTime, crc, &st)) {

Completed in 289 milliseconds