Lines Matching refs:error
116 void (*error) (char *x)) in unlzo()
128 error("NULL output pointer and no flush function provided"); in unlzo()
133 error("Could not allocate output buffer"); in unlzo()
139 error("Both input pointer and fill function provided, don't know what to do"); in unlzo()
144 error("NULL input pointer and missing fill function"); in unlzo()
149 error("Could not allocate input buffer"); in unlzo()
170 error("invalid header"); in unlzo()
193 error("file corrupted"); in unlzo()
208 error("dest len longer than block size"); in unlzo()
219 error("file corrupted"); in unlzo()
227 error("file corrupted"); in unlzo()
238 error("file corrupted"); in unlzo()
253 error("Compressed data violation"); in unlzo()
297 void (*error)(char *x)) in __decompress()
299 return unlzo(buf, len, fill, flush, out_buf, pos, error); in __decompress()