Lines Matching refs:zerr
246 int zerr = deflateInit2(z_stream_.get(), Z_BEST_COMPRESSION, Z_DEFLATED, -MAX_WBITS,
248 if (zerr != Z_OK) {
249 if (zerr == Z_VERSION_ERROR) {
253 ALOGE("deflateInit2 failed (zerr=%d)", zerr);
308 int zerr = deflate(z_stream_.get(), Z_NO_FLUSH);
309 if (zerr != Z_OK) {
338 int zerr;
339 while ((zerr = deflate(z_stream_.get(), Z_FINISH)) == Z_OK) {
351 if (zerr != Z_STREAM_END) {