Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

Name:flush_pending

Proto:static void flush_pending(z_streamp strm)

Type:void

Parameter:

TypeParameterName
z_streampstrm
307  s = not visible by applications
308  len = b of bytes in the pending buffer
310  If len > remaining free space at next_out Then len = remaining free space at next_out
311  If len == 0 Then Return
313  If ( next output byte should be put there != NULL) Then
314  No 3D Now!( next output byte should be put there , xt pending byte to output to the stream , len)
315  next output byte should be put there += len
317  xt pending byte to output to the stream += len
318  total nb of bytes output so far += len
319  remaining free space at next_out -= len
320  b of bytes in the pending buffer -= len
321  If b of bytes in the pending buffer == 0 Then
322  xt pending byte to output to the stream = utput still pending
Caller
NameDescribe
zlib_deflate