Searched refs:Z_BUF_ERROR (Results 1 - 8 of 8) sorted by relevance

/forgerock/web-agents-v4/zlib/
H A Duncompr.c21 enough memory, Z_BUF_ERROR if there was not enough room in the output
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
51 if (err == Z_NEED_DICT || (err == Z_BUF_ERROR && stream.avail_in == 0))
H A Dcompress.c19 memory, Z_BUF_ERROR if there was not enough room in the output buffer,
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
52 return err == Z_OK ? Z_BUF_ERROR : err;
H A Dgzread.c57 if (state->err != Z_OK && state->err != Z_BUF_ERROR)
186 gz_error(state, Z_BUF_ERROR, "unexpected end of file");
305 (state->err != Z_OK && state->err != Z_BUF_ERROR))
401 (state->err != Z_OK && state->err != Z_BUF_ERROR))
436 (state->err != Z_OK && state->err != Z_BUF_ERROR))
500 (state->err != Z_OK && state->err != Z_BUF_ERROR))
588 err = state->err == Z_BUF_ERROR ? Z_BUF_ERROR : Z_OK;
H A Dgzlib.c351 (state->err != Z_OK && state->err != Z_BUF_ERROR))
379 if (state->err != Z_OK && state->err != Z_BUF_ERROR)
588 if (err != Z_OK && err != Z_BUF_ERROR)
H A Dinfback.c157 then return a Z_BUF_ERROR from inflateBack(). */
164 ret = Z_BUF_ERROR; \
209 Z_BUF_ERROR. */
217 ret = Z_BUF_ERROR; \
243 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
611 ret = Z_BUF_ERROR;
H A Ddeflate.c475 return Z_BUF_ERROR;
516 if (err == Z_BUF_ERROR && s->pending == 0)
683 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
885 * returning Z_STREAM_END instead of Z_BUF_ERROR.
889 ERR_RETURN(strm, Z_BUF_ERROR);
894 ERR_RETURN(strm, Z_BUF_ERROR);
H A Dzlib.h180 #define Z_BUF_ERROR (-5) macro
346 if next_in or next_out was Z_NULL), Z_BUF_ERROR if no progress is possible
347 (for example avail_in or avail_out was zero). Note that Z_BUF_ERROR is not
499 Z_BUF_ERROR if no progress is possible or if there was not enough room in the
500 output buffer when Z_FINISH is used. Note that Z_BUF_ERROR is not fatal, and
677 stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR if
740 deflatePrime returns Z_OK if success, Z_BUF_ERROR if there was not enough
868 Z_BUF_ERROR if no more input was provided, Z_DATA_ERROR if no flush point
1087 return values of inflateBack() can be Z_STREAM_END on success, Z_BUF_ERROR
1091 In the case of Z_BUF_ERROR, a
[all...]
H A Dinflate.c602 will return Z_BUF_ERROR if it has not reached the end of the stream.
1250 ret = Z_BUF_ERROR;
1388 if (strm->avail_in == 0 && state->bits < 8) return Z_BUF_ERROR;

Completed in 45 milliseconds