Home | History | Annotate | Download | only in libdex

Lines Matching full:zerr

512     int zerr;
531 zerr = inflateInit2(&zstream, -MAX_WBITS);
532 if (zerr != Z_OK) {
533 if (zerr == Z_VERSION_ERROR) {
537 LOGE("Call to inflateInit2 failed (zerr=%d)\n", zerr);
549 zerr = inflate(&zstream, Z_NO_FLUSH);
550 if (zerr != Z_OK && zerr != Z_STREAM_END) {
551 LOGW("zlib inflate: zerr=%d (nIn=%p aIn=%u nOut=%p aOut=%u)\n",
552 zerr
559 (zerr == Z_STREAM_END && zstream.avail_out != sizeof(writeBuf)))
576 } while (zerr == Z_OK);
578 assert(zerr == Z_STREAM_END); /* other errors should've been caught */