Lines Matching refs:error
38 void (*error) (char *x)) in unlz4()
56 error("NULL output pointer and no flush function provided"); in unlz4()
61 error("Could not allocate output buffer"); in unlz4()
67 error("Both input pointer and fill function provided,"); in unlz4()
72 error("NULL input pointer and missing fill function"); in unlz4()
77 error("Could not allocate input buffer"); in unlz4()
89 error("data corrupted"); in unlz4()
101 error("invalid header"); in unlz4()
115 error("data corrupted"); in unlz4()
140 error("chunk length is longer than allocated"); in unlz4()
145 error("data corrupted"); in unlz4()
162 error("Decoding failed"); in unlz4()
180 error("data corrupted"); in unlz4()
204 void(*error)(char *x) in decompress()
207 return unlz4(buf, in_len - 4, fill, flush, output, posp, error); in decompress()