Lines Matching refs:zerr
1731 int zerr; /* Decompressor error */ in httpPeek() local
1776 zerr = inflate(&stream, Z_SYNC_FLUSH); in httpPeek()
1779 if (zerr < Z_OK) in httpPeek()
1781 DEBUG_printf(("2httpPeek: zerr=%d", zerr)); in httpPeek()
1964 int zerr; /* Decompressor error */ in httpRead2() local
1972 if ((zerr = inflate((z_stream *)http->stream, Z_SYNC_FLUSH)) < Z_OK) in httpRead2()
1974 DEBUG_printf(("2httpRead2: zerr=%d", zerr)); in httpRead2()
3698 int zerr; /* Compression status */ in http_content_coding_finish() local
3715 zerr = deflate((z_stream *)http->stream, Z_FINISH); in http_content_coding_finish()
3731 while (zerr == Z_OK); in http_content_coding_finish()
3773 int zerr; /* Error/status */ in http_content_coding_start() local
3853 …if ((zerr = deflateInit2((z_stream *)http->stream, Z_DEFAULT_COMPRESSION, Z_DEFLATED, coding == _H… in http_content_coding_start()
3861 http->error = zerr == Z_MEM_ERROR ? ENOMEM : EINVAL; in http_content_coding_start()
3893 …if ((zerr = inflateInit2((z_stream *)http->stream, coding == _HTTP_CODING_INFLATE ? -15 : 31)) < Z… in http_content_coding_start()
3901 http->error = zerr == Z_MEM_ERROR ? ENOMEM : EINVAL; in http_content_coding_start()