Lines Matching refs:bzerror
123 catch_bz2_error(int bzerror)
125 switch(bzerror) {
166 "Unrecognized error from libbzip2: %d", bzerror);
187 int bzerror;
207 bzerror = BZ2_bzCompress(&c->bzs, action);
210 if (catch_bz2_error(bzerror))
214 if (action == BZ_FINISH && bzerror == BZ_STREAM_END)
317 int bzerror;
334 bzerror = BZ2_bzCompressInit(&self->bzs, compresslevel, 0, 0);
335 if (catch_bz2_error(bzerror))
645 int bzerror;
665 bzerror = BZ2_bzDecompressInit(&self->bzs, 0, 0);
666 if (catch_bz2_error(bzerror))