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

  /frameworks/base/cmds/idmap/
scan.cpp 197 uint32_t uncompLen = 0;
199 if (!zip->getEntryInfo(entry, &method, &uncompLen, NULL, NULL, NULL, NULL)) {
212 char *buf = new char[uncompLen];
214 ALOGW("%s: failed to allocate %" PRIu32 " byte\n", __FUNCTION__, uncompLen);
218 StreamingZipInflater inflater(dataMap, uncompLen);
219 if (inflater.read(buf, uncompLen) < 0) {
220 ALOGW("%s: failed to inflate %" PRIu32 " byte\n", __FUNCTION__, uncompLen);
226 int priority = parse_manifest(buf, static_cast<size_t>(uncompLen), target_package_name);
  /frameworks/base/core/jni/
com_android_internal_content_NativeLibraryHelper.cpp 156 uint32_t uncompLen;
158 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, NULL, NULL)) {
162 *total += static_cast<size_t>(uncompLen);
182 uint32_t uncompLen;
189 if (!zipFile->getEntryInfo(zipEntry, &method, &uncompLen, NULL, &offset, &when, &crc)) {
235 if (!isFileDifferent(localFileName, uncompLen, modTime, crc, &st)) {
  /build/make/tools/zipalign/
ZipEntry.h 182 void setDataInfo(long uncompLen, long compLen, uint32_t crc32,
ZipEntry.cpp 261 void ZipEntry::setDataInfo(long uncompLen, long compLen, uint32_t crc32,
267 mCDE.mUncompressedSize = uncompLen;
  /frameworks/base/tools/aapt/
ZipEntry.h 186 void setDataInfo(long uncompLen, long compLen, unsigned long crc32,
ZipEntry.cpp 242 void ZipEntry::setDataInfo(long uncompLen, long compLen, unsigned long crc32,
248 mCDE.mUncompressedSize = uncompLen;

Completed in 269 milliseconds