Home
last modified time | relevance | path

Searched refs:remainCompressedSize (Results 1 - 6 of 6) sorted by relevance

/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/
H A Dzip_file.cpp458 bool ZipFile::ReadZStream(const BytePtr &buffer, z_stream &zstream, uint32_t &remainCompressedSize) const in ReadZStream()
462 size_t remainBytes = (remainCompressedSize > UNZIP_BUF_IN_LEN) ? UNZIP_BUF_IN_LEN : remainCompressedSize; in ReadZStream()
469 remainCompressedSize -= readBytes; in ReadZStream()
491 uint32_t remainCompressedSize = zipEntry.compressedSize; in UnzipWithInflated() local
494 while ((remainCompressedSize > 0) || (zstream.avail_in > 0)) { in UnzipWithInflated()
495 if (!ReadZStream(bufIn, zstream, remainCompressedSize)) { in UnzipWithInflated()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dzip_file.cpp475 bool ZipFile::ReadZStream(const BytePtr &buffer, z_stream &zstream, uint32_t &remainCompressedSize) const in ReadZStream()
479 size_t remainBytes = (remainCompressedSize > UNZIP_BUF_IN_LEN) ? UNZIP_BUF_IN_LEN : remainCompressedSize; in ReadZStream()
486 remainCompressedSize -= readBytes; in ReadZStream()
507 uint32_t remainCompressedSize = zipEntry.compressedSize; in UnzipWithInflated() local
509 while ((remainCompressedSize > 0) || (zstream.avail_in > 0)) { in UnzipWithInflated()
510 if (!ReadZStream(bufIn, zstream, remainCompressedSize)) { in UnzipWithInflated()
/foundation/ability/ability_base/interfaces/kits/native/extractortool/src/
H A Dzip_file.cpp798 uint32_t remainCompressedSize = zipEntry.compressedSize; in UnzipWithInflatedFromMMap() local
807 while ((remainCompressedSize > 0) || (zstream.avail_in > 0)) { in UnzipWithInflatedFromMMap()
808 if (!ReadZStreamFromMMap(bufIn, mmapSrcDataPtr, zstream, remainCompressedSize)) { in UnzipWithInflatedFromMMap()
863 z_stream &zstream, uint32_t &remainCompressedSize) const in ReadZStreamFromMMap()
872 size_t remainBytes = (remainCompressedSize > UNZIP_BUF_IN_LEN) ? UNZIP_BUF_IN_LEN : remainCompressedSize; in ReadZStreamFromMMap()
879 remainCompressedSize -= remainBytes; in ReadZStreamFromMMap()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dzip_file.h288 * @param remainCompressedSize Indicates the obtained size.
291 bool ReadZStream(const BytePtr &buffer, z_stream &zstream, uint32_t &remainCompressedSize) const;
/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/include/
H A Dzip_file.h167 bool ReadZStream(const BytePtr &buffer, z_stream &zstream, uint32_t &remainCompressedSize) const;
/foundation/ability/ability_base/interfaces/kits/native/extractortool/include/
H A Dzip_file.h285 z_stream &zstream, uint32_t &remainCompressedSize) const;

Completed in 6 milliseconds