Lines Matching refs:compLen
584 size_t compLen = get4LE(ptr + kCDECompLen);
586 *pCompLen = compLen;
601 * Note we don't verify compLen/uncompLen if they don't request the
645 if ((off_t)(dataOffset + compLen) > cdOffset) {
647 (long) dataOffset, compLen, (long) cdOffset);
668 static int inflateToFile(int outFd, int inFd, size_t uncompLen, size_t compLen)
714 size_t getSize = (compLen > kBufSize) ? kBufSize : compLen;
723 compLen -= getSize;
788 size_t uncompLen, compLen;
791 if (dexZipGetEntryInfo(pArchive, entry, &method, &uncompLen, &compLen,
805 if (inflateToFile(fd, pArchive->mFd, uncompLen, compLen) != 0)