Lines Matching refs:error
101 void (*error) (char *x)) in unlzo()
113 error("NULL output pointer and no flush function provided"); in unlzo()
118 error("Could not allocate output buffer"); in unlzo()
124 error("Both input pointer and fill function provided, don't know what to do"); in unlzo()
129 error("NULL input pointer and missing fill function"); in unlzo()
134 error("Could not allocate input buffer"); in unlzo()
155 error("invalid header"); in unlzo()
178 error("file corrupted"); in unlzo()
193 error("dest len longer than block size"); in unlzo()
204 error("file corrupted"); in unlzo()
212 error("file corrupted"); in unlzo()
223 error("file corrupted"); in unlzo()
238 error("Compressed data violation"); in unlzo()
282 void (*error)(char *x)) in __decompress()
284 return unlzo(buf, len, fill, flush, out_buf, pos, error); in __decompress()