Lines Matching refs:inflateBack
1078 Initialize the internal stream state for decompression using inflateBack()
1088 See inflateBack() for the usage of these routines.
1100 ZEXTERN int ZEXPORT inflateBack(z_streamp strm,
1104 inflateBack() does a raw inflate with a single call using a call-back
1109 buffers. inflateBack() trusts the application to not change the output
1110 buffer passed by the output function, at least until inflateBack() returns.
1114 inflateBack() may then be used multiple times to inflate a complete, raw
1126 inflateBack() uses two subroutines supplied by the caller that are then
1127 called by inflateBack() for input and output. inflateBack() calls those
1131 typedefs. inflateBack() will call in(in_desc, &buf) which should return the
1134 case -- and inflateBack() will return a buffer error. inflateBack() will
1137 returns non-zero, inflateBack() will return with an error. Neither in() nor
1143 For convenience, inflateBack() can be provided input on the first call by
1146 calling inflateBack(). If strm->next_in is Z_NULL, then in() will be called
1151 The in_desc and out_desc parameters of inflateBack() is passed as the
1156 On return, inflateBack() will set strm->next_in and strm->avail_in to
1158 return values of inflateBack() can be Z_STREAM_END on success, Z_BUF_ERROR
1166 assured to be defined if out() returns non-zero.) Note that inflateBack()