Home | History | Annotate | Download | only in utils

Lines Matching full:zerr

49     int zerr;
77 zerr = inflateInit2(&zstream, -MAX_WBITS);
78 if (zerr != Z_OK) {
79 if (zerr == Z_VERSION_ERROR) {
83 LOGE("Call to inflateInit2 failed (zerr=%d)\n", zerr);
115 zerr = inflate(&zstream, Z_NO_FLUSH);
116 if (zerr != Z_OK && zerr != Z_STREAM_END) {
117 LOGD("zlib inflate call failed (zerr=%d)\n", zerr);
122 } while (zerr == Z_OK);
124 assert(zerr == Z_STREAM_END); /* other errors should've been caught */
161 int zerr;
189 zerr = inflateInit2(&zstream, -MAX_WBITS);
190 if (zerr != Z_OK) {
191 if (zerr == Z_VERSION_ERROR) {
195 LOGE("Call to inflateInit2 failed (zerr=%d)\n", zerr);
227 zerr = inflate(&zstream, Z_NO_FLUSH);
228 if (zerr != Z_OK && zerr != Z_STREAM_END) {
229 LOGD("zlib inflate call failed (zerr=%d)\n", zerr);
234 } while (zerr == Z_OK);
236 assert(zerr == Z_STREAM_END); /* other errors should've been caught */