Searched refs:inflateLen (Results 1 - 4 of 4) sorted by relevance
/foundation/ability/ability_base/interfaces/kits/native/extractortool/src/ |
H A D | zip_file.cpp | 799 size_t inflateLen = 0; in UnzipWithInflatedFromMMap() local 820 inflateLen = UNZIP_BUF_OUT_LEN - zstream.avail_out; in UnzipWithInflatedFromMMap() 821 if (!CopyInflateOut(zstream, inflateLen, &dstDataPtr, bufOut, errorTimes)) { in UnzipWithInflatedFromMMap() 838 bool ZipFile::CopyInflateOut(z_stream &zstream, size_t inflateLen, uint8_t** dstDataPtr, in CopyInflateOut() argument 841 if (inflateLen > 0) { in CopyInflateOut() 842 if (memcpy_s(*dstDataPtr, inflateLen, bufOut, inflateLen) != EOK) { in CopyInflateOut() 847 *dstDataPtr += inflateLen; in CopyInflateOut()
|
/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/ |
H A D | zip_file.cpp | 510 size_t inflateLen = UNZIP_BUF_OUT_LEN - zstream.avail_out; in UnzipWithInflated() local 511 if (inflateLen > 0) { in UnzipWithInflated() 512 dest.write(reinterpret_cast<const char*>(bufOut), inflateLen); in UnzipWithInflated() local
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | zip_file.cpp | 522 size_t inflateLen = UNZIP_BUF_OUT_LEN - zstream.avail_out; in UnzipWithInflated() local 523 if (inflateLen > 0) { in UnzipWithInflated() 524 dest.write(reinterpret_cast<const char *>(bufOut), inflateLen); in UnzipWithInflated() local
|
/foundation/ability/ability_base/interfaces/kits/native/extractortool/include/ |
H A D | zip_file.h | 282 bool CopyInflateOut(z_stream &zstream, size_t inflateLen, uint8_t** dstDataPtr,
|
Completed in 4 milliseconds