HomeSort by relevance Sort by last modified time
    Searched full:uncomplen (Results 1 - 13 of 13) sorted by null

  /frameworks/base/libs/utils/
ZipFileRO.cpp 508 size_t uncompLen = get4LE(ptr + kCDEUncompLen);
510 *pUncompLen = uncompLen;
522 * Note we don't verify compLen/uncompLen if they don't request the
606 (off_t)(dataOffset + uncompLen) > cdOffset)
609 (long) dataOffset, (ZD_TYPE) uncompLen, (long) cdOffset);
681 size_t uncompLen, compLen;
685 getEntryInfo(entry, &method, &uncompLen, &compLen, &offset, NULL, NULL);
711 memcpy(buffer, ptr, uncompLen);
713 if (!inflateBuffer(buffer, ptr, uncompLen, compLen))
741 size_t uncompLen, compLen
    [all...]
  /bootable/recovery/updater/
updater.c 81 char* script = malloc(script_entry->uncompLen+1);
82 if (!mzReadZipEntry(&za, script_entry, script, script_entry->uncompLen)) {
86 script[script_entry->uncompLen] = '\0';
  /dalvik/libdex/
ZipArchive.c 501 size_t uncompLen = get4LE(ptr + kCDEUncompLen);
503 *pUncompLen = uncompLen;
515 * Note we don't verify compLen/uncompLen if they don't request the
560 (off_t)(dataOffset + uncompLen) > cdOffset)
563 (long) dataOffset, uncompLen, (long) cdOffset);
576 static int inflateToFile(int inFd, int outFd, size_t uncompLen, size_t compLen)
662 if (zstream.total_out != uncompLen) {
664 zstream.total_out, uncompLen);
682 static int copyFileToFile(int inFd, int outFd, size_t uncompLen)
687 while (uncompLen != 0)
    [all...]
  /frameworks/base/include/utils/
ZipFileRO.h 145 * Use "uncompLen" from getEntryInfo() to determine the required
167 size_t uncompLen, size_t compLen);
173 size_t uncompLen, size_t compLen);
  /bootable/recovery/minzip/
Zip.h 30 long uncompLen;
121 return pEntry->uncompLen;
Zip.c 95 pEntry->compLen, pEntry->uncompLen, pEntry->compression);
338 pEntry->uncompLen = get4LE(ptr + CENLEN);
653 if (result != pEntry->uncompLen) {
656 result, pEntry->uncompLen);
1078 if (pEntry->uncompLen == 0) {
1084 char *linkTarget = malloc(pEntry->uncompLen + 1);
1090 pEntry->uncompLen);
1097 linkTarget[pEntry->uncompLen] = '\0';
    [all...]
  /dalvik/dexopt/
OptMain.c 63 size_t uncompLen;
108 if (dexZipGetEntryInfo(&zippy, zipEntry, NULL, &uncompLen, NULL, NULL,
115 uncompLen = uncompLen;
187 if (!dvmContinueOptimization(cacheFd, dexOffset, uncompLen, debugFileName,
  /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 259 void ZipEntry::setDataInfo(long uncompLen, long compLen, unsigned long crc32,
265 mCDE.mUncompressedSize = uncompLen;
  /prebuilt/sdk/tools/linux/
zipalign 
aapt 

Completed in 224 milliseconds