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

  /bootable/recovery/minzip/
Zip.h 30 long uncompLen;
121 return pEntry->uncompLen;
  /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,
  /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/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...]

Completed in 95 milliseconds