函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\zlib_deflate\deflate.c Create Date:2022-07-27 07:55:40
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:flush_pending

函数原型:static void flush_pending(z_streamp strm)

返回类型:void

参数:

类型参数名称
z_streampstrm
307  s等于 not visible by applications
308  len等于b of bytes in the pending buffer
310  如果len大于 remaining free space at next_out len等于 remaining free space at next_out
311  如果len恒等于0则返回
313  如果( next output byte should be put there != NULL)则
314  内存复制( 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  如果b of bytes in the pending buffer 恒等于0则
322  xt pending byte to output to the stream 等于utput still pending
调用者
名称描述
zlib_deflate