/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/napi/common/ |
H A D | common_func.cpp | 484 int32_t windowBits = 0; in GetInflateInitArg() local 485 tie(succ, windowBits) = bufNVal.ToInt32(); in GetInflateInitArg() 491 return {true, zs, windowBits}; in GetInflateInitArg() 553 int32_t windowBits = 0; in GetDeflateInit2Arg() local 554 tie(succ, windowBits) = windowBitsNVal.ToInt32(); in GetDeflateInit2Arg() 578 return {true, zs, level, method, windowBits, memLevel, strategy}; in GetDeflateInit2Arg() 796 int32_t windowBits = 0; in GetInflateBackInitArg() local 798 tie(succ, windowBits) = windowBitsNVal.ToInt64(); in GetInflateBackInitArg() 799 if (!succ || windowBits < MIN_WINDOWBITS || windowBits > MAX_WINDOWBITS) { in GetInflateBackInitArg() 813 return {true, windowBits, buf, bufLen}; in GetInflateBackInitArg()
|
/ohos5.0/base/update/updater/services/package/pkg_algorithm/ |
H A D | pkg_algo_deflate.h | 30 windowBits_ = info.windowBits; in PkgAlgoDeflate()
|
/ohos5.0/base/update/updater/services/include/package/ |
H A D | pkg_info_utils.h | 138 int32_t windowBits; member
|
/ohos5.0/base/update/updater/services/diffpatch/bzip2/ |
H A D | zip_adapter.cpp | 30 windowBits_ = info->windowBits; in ZipAdapter()
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.1-Release/ |
H A D | native-apidiff-v3.1-release.md | 123 …ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method, int windowBits, int memLevel, i… 155 …m));<br />ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, unsigned char F… 160 …ze));<br _>/ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, const char *ver… 163 …strm));<br />ZEXTERN int ZEXPORT inflateReset2 OF((z_streamp strm, int windowBits)); | 新增 | 此函…
|
/ohos5.0/base/update/updater/services/package/pkg_package/ |
H A D | pkg_zipfile.cpp | 619 fileInfo_.windowBits = -MAX_WBITS; in DecodeLocalFileHeader() 765 fileInfo_.windowBits = -MAX_WBITS; in Init() 779 fileInfo_.windowBits = info->windowBits; in Init()
|
H A D | pkg_gzipfile.cpp | 284 fileInfo_.windowBits = -MAX_WBITS; in DecodeHeader()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/napi/class_zip/ |
H A D | zip_n_exporter.cpp | 55 int32_t windowBits = 0; member 550 tie(succ, zStream, arg->level, arg->method, arg->windowBits, arg->memLevel, arg->strategy) = in DeflateInit2() 561 …arg->errCode = deflateInit2(zs.get(), arg->level, arg->method, arg->windowBits, arg->memLevel, arg… in DeflateInit2() 1620 int32_t windowBits = 0; in InflateInit2() local 1621 tie(succ, zStream, windowBits) = CommonFunc::GetInflateInitArg(env, funcArg); in InflateInit2() 1627 auto cbExec = [arg, zipEntity, zStream, windowBits](napi_env env) -> NapiBusinessError { in InflateInit2() 1632 arg->errCode = inflateInit2(zs.get(), windowBits); in InflateInit2() 2084 int32_t windowBits = 0; in InflateBackInit() local 2087 tie(succ, windowBits, windowBuf, bufLen) = CommonFunc::GetInflateBackInitArg(env, funcArg); in InflateBackInit() 2093 auto cbExec = [arg, zipEntity, windowBits, windowBuf](napi_env env) -> NapiBusinessError { in InflateBackInit() [all …]
|
/ohos5.0/base/update/updater/services/diffpatch/diff/ |
H A D | image_diff.cpp | 433 windowBits_ = info->windowBits; in TestAndSetConfig() 447 zipInfo.windowBits = info->windowBits; in TestAndSetConfig()
|
/ohos5.0/base/update/updater/test/unittest/diffpatch/ |
H A D | bzip2_unittest.cpp | 288 zipInfo.windowBits = -15;
|
/ohos5.0/base/update/updater/services/diffpatch/patch/ |
H A D | image_patch.cpp | 263 fileInfo->windowBits = windowBits_; in GetFileInfo()
|
/ohos5.0/docs/en/release-notes/api-diff/v3.1-Release/ |
H A D | native-apidiff-v3.1-release.md | 123 …ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method, int windowBits, int memLevel, i… 155 …trm));<br>ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, unsigned char F… 160 …ze));<br _>/ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, const char *ver… 163 …p strm));<br>ZEXTERN int ZEXPORT inflateReset2 OF((z_streamp strm, int windowBits)); | Added | …
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-basic-services-kit/ |
H A D | js-apis-zlib.md | 1723 inflateReset2(strm: ZStream, windowBits: number): Promise<ReturnStatus> 1736 | windowBits | number | 是 | 最大窗口大小的以2为底的对数。 | 1961 inflateInit2(strm: ZStream, windowBits: number): Promise<ReturnStatus> 1974 | windowBits | number | 是 | 最大窗口大小的以2为底的对数。 | 2372 inflateBackInit(strm: ZStream, windowBits: number, window: ArrayBuffer): Promise<ReturnStatus> 2385 | windowBits | number | 是 | 最大窗口大小的以2为底的对数,取值范围在8~15。 | 2808 deflateInit2(strm: ZStream, level: CompressLevel, method: CompressMethod, windowBits: number, memLe… 2823 | windowBits | number | 是 | 最大窗口大小的以2为底的对数。 |
|
/ohos5.0/base/update/updater/test/unittest/package/ |
H A D | pkg_manager_unittest.cpp | 463 zipInfo.windowBits = WINDOWBITS; in TestDecompressGzipInitFile()
|
/ohos5.0/docs/en/application-dev/reference/apis-basic-services-kit/ |
H A D | js-apis-zlib.md | 1723 inflateReset2(strm: ZStream, windowBits: number): Promise<ReturnStatus> 1736 | windowBits | number | Yes | The logarithm with base 2 based on the maximum window size. | 1961 inflateInit2(strm: ZStream, windowBits: number): Promise<ReturnStatus> 1974 | windowBits | number | Yes | The logarithm with base 2 based on the maximum window size. | 2372 inflateBackInit(strm: ZStream, windowBits: number, window: ArrayBuffer): Promise<ReturnStatus> 2385 | windowBits | number | Yes | The logarithm with base 2 based on the maximum window size. The… 2777 deflateInit2(strm: ZStream, level: CompressLevel, method: CompressMethod, windowBits: number, memLe… 2792 | windowBits | number | Yes | The logarithm with base 2 based on the maximum window size…
|