Lines Matching refs:error
47 void(*error)(char *x)) { in __gunzip()
61 error("Out of memory while allocating output buffer"); in __gunzip()
72 error("Out of memory while allocating input buffer"); in __gunzip()
78 error("Out of memory while allocating z_stream"); in __gunzip()
90 error("Out of memory while allocating workspace"); in __gunzip()
105 error("Not a gzip file"); in __gunzip()
123 error("header error"); in __gunzip()
150 error("read error"); in __gunzip()
163 error("write error"); in __gunzip()
175 error("uncompression error"); in __gunzip()
205 void (*error)(char *x)) in gunzip()
207 return __gunzip(buf, len, fill, flush, out_buf, 0, pos, error); in gunzip()
215 void (*error)(char *x)) in __decompress()
217 return __gunzip(buf, len, fill, flush, out_buf, out_len, pos, error); in __decompress()