Lines Matching defs:uncompLen
512 size_t uncompLen = get4LE(ptr + kCDEUncompLen);
514 *pUncompLen = uncompLen;
526 * Note we don't verify compLen/uncompLen if they don't request the
571 (off_t)(dataOffset + uncompLen) > cdOffset)
574 (long) dataOffset, uncompLen, (long) cdOffset);
587 static int inflateToFile(int outFd, int inFd, size_t uncompLen, size_t compLen)
673 if (zstream.total_out != uncompLen) {
675 zstream.total_out, uncompLen);
707 size_t uncompLen, compLen;
710 if (dexZipGetEntryInfo(pArchive, entry, &method, &uncompLen, &compLen,
721 if (sysCopyFileToFile(fd, pArchive->mFd, uncompLen) != 0)
724 if (inflateToFile(fd, pArchive->mFd, uncompLen, compLen) != 0)