Lines Matching refs:uncompLen
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,
802 if (sysCopyFileToFile(fd, pArchive->mFd, uncompLen) != 0)
805 if (inflateToFile(fd, pArchive->mFd, uncompLen, compLen) != 0)