Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\zlib_inflate\inflate.c Create Date:2022-07-28 06:57:47
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:zlib_inflateReset

Proto:int zlib_inflateReset(z_streamp strm)

Type:int

Parameter:

TypeParameterName
z_streampstrm
27  If (strm == NULL || not visible by applications == NULL) Then Return Z_STREAM_ERROR
28  state = not visible by applications
29  total nb of input bytes read so far = total nb of bytes output so far = protected copy of output count = 0
30  last error message, NULL if no error = NULL
31  adler32 value of the uncompressed data = 1
32  current inflate mode = waiting for magic header
33  rue if processing last block = 0
34  rue if dictionary provided = 0
35  zlib header max distance (INFLATE_STRICT) = 32768U
36  put bit accumulator = 0
37  umber of bits in "in" = 0
38  starting table for length/literal codes = starting table for distance codes = xt available space in codes[] = space for code tables
41  window size or zero if not using window = 1U << log base 2 of requested window size
42  window write index = 0
43  valid bytes in the window = 0
45  Return Allowed flush values; see deflate() and inflate() below for details
Caller
NameDescribe
zlib_inflateInit2