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

  /bootable/recovery/minzip/
Zip.h 37 long uncompLen;
128 return pEntry->uncompLen;
  /dalvik/dexopt/
OptMain.cpp 63 size_t uncompLen;
111 if (dexZipGetEntryInfo(&zippy, zipEntry, NULL, &uncompLen, NULL, NULL,
118 uncompLen = uncompLen;
186 if (!dvmContinueOptimization(cacheFd, dexOffset, uncompLen, debugFileName,
  /frameworks/base/core/jni/
com_android_internal_content_NativeLibraryHelper.cpp 149 size_t uncompLen;
151 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, NULL, NULL)) {
155 *total += uncompLen;
171 size_t uncompLen;
176 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, &when, &crc)) {
204 if (!isFileDifferent(localFileName, uncompLen, modTime, crc, &st)) {
  /dalvik/libdex/
ZipArchive.cpp 587 size_t uncompLen = get4LE(ptr + kCDEUncompLen);
589 *pUncompLen = uncompLen;
601 * Note we don't verify compLen/uncompLen if they don't request the
652 (off_t)(dataOffset + uncompLen) > cdOffset)
655 (long) dataOffset, uncompLen, (long) cdOffset);
668 static int inflateToFile(int outFd, int inFd, size_t uncompLen, size_t compLen)
754 if (zstream.total_out != uncompLen) {
756 zstream.total_out, uncompLen);
788 size_t uncompLen, compLen;
791 if (dexZipGetEntryInfo(pArchive, entry, &method, &uncompLen, &compLen
    [all...]
  /frameworks/base/libs/androidfw/
ZipFileRO.cpp 543 size_t uncompLen = get4LE(ptr + kCDEUncompLen);
545 *pUncompLen = uncompLen;
557 * Note we don't verify compLen/uncompLen if they don't request the
648 (uncompLen > (cdOffset - dataOffset))))
651 (long) dataOffset, (ZD_TYPE) uncompLen, (long) cdOffset);
694 size_t uncompLen;
698 if (!getEntryInfo(entry, &method, &uncompLen, &compLen, &offset, NULL, NULL)) {
704 actualLen = uncompLen;
734 size_t uncompLen, compLen;
739 if (!getEntryInfo(entry, &method, &uncompLen, &compLen, &offset, NULL, NULL))
    [all...]

Completed in 969 milliseconds