Lines Matching refs:error
35 void (*error) (char *x)) in unlz4()
53 error("NULL output pointer and no flush function provided"); in unlz4()
58 error("Could not allocate output buffer"); in unlz4()
64 error("Both input pointer and fill function provided,"); in unlz4()
69 error("NULL input pointer and missing fill function"); in unlz4()
74 error("Could not allocate input buffer"); in unlz4()
86 error("data corrupted"); in unlz4()
98 error("invalid header"); in unlz4()
112 error("data corrupted"); in unlz4()
144 error("chunk length is longer than allocated"); in unlz4()
149 error("data corrupted"); in unlz4()
169 error("Decoding failed"); in unlz4()
187 error("data corrupted"); in unlz4()
212 void (*error)(char *x) in __decompress()
215 return unlz4(buf, in_len - 4, fill, flush, output, posp, error); in __decompress()