Lines Matching refs:error
42 void(*error)(char *x)) { in __gunzip()
56 error("Out of memory while allocating output buffer"); in __gunzip()
67 error("Out of memory while allocating input buffer"); in __gunzip()
73 error("Out of memory while allocating z_stream"); in __gunzip()
80 error("Out of memory while allocating workspace"); in __gunzip()
95 error("Not a gzip file"); in __gunzip()
113 error("header error"); in __gunzip()
136 error("read error"); in __gunzip()
149 error("write error"); in __gunzip()
161 error("uncompression error"); in __gunzip()
191 void (*error)(char *x)) in gunzip()
193 return __gunzip(buf, len, fill, flush, out_buf, 0, pos, error); in gunzip()
201 void (*error)(char *x)) in __decompress()
203 return __gunzip(buf, len, fill, flush, out_buf, out_len, pos, error); in __decompress()