Lines Matching refs:z_err
64 int z_err; /* error code for last stream operation */ member
106 s->z_err = Z_ERRNO; in get_byte()
125 s->z_err = Z_DATA_ERROR; in getLong()
152 s->z_err = s->stream.avail_in != 0 ? Z_OK : in check_header()
160 s->z_err = Z_DATA_ERROR; in check_header()
187 s->z_err = s->z_eof ? Z_DATA_ERROR : Z_OK; in check_header()
263 if (s->z_err == Z_DATA_ERROR || s->z_err == Z_ERRNO) in read()
265 if (s->z_err == Z_STREAM_END) in read()
294 s->z_err = Z_ERRNO; in read()
314 s->z_err = Z_ERRNO; in read()
320 s->z_err = inflate(&(s->stream), Z_NO_FLUSH); in read()
322 if (s->z_err == Z_STREAM_END) { in read()
329 s->z_err = Z_DATA_ERROR; in read()
339 if (s->z_err == Z_OK) { in read()
350 if (s->z_err != Z_OK || s->z_eof) in read()