HomeSort by relevance Sort by last modified time
    Searched refs:zerr (Results 1 - 8 of 8) sorted by null

  /frameworks/base/libs/utils/
ZipUtils.cpp 49 int zerr; local
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)
161 int zerr; local
    [all...]
ZipFileRO.cpp 787 int zerr; local
806 zerr = inflateInit2(&zstream, -MAX_WBITS);
807 if (zerr != Z_OK) {
808 if (zerr == Z_VERSION_ERROR) {
812 LOGE("Call to inflateInit2 failed (zerr=%d)\n", zerr);
820 zerr = inflate(&zstream, Z_FINISH);
821 if (zerr != Z_STREAM_END) {
822 LOGW("Zip inflate failed, zerr=%d (nIn=%p aIn=%u nOut=%p aOut=%u)\n",
823 zerr, zstream.next_in, zstream.avail_in
854 int zerr; local
    [all...]
  /system/core/libzipfile/
zipfile.c 84 int zerr; local
98 zerr = inflateInit2(&zstream, -MAX_WBITS);
99 if (zerr != Z_OK) {
104 zerr = inflate(&zstream, Z_FINISH);
105 if (zerr != Z_STREAM_END) {
106 fprintf(stderr, "zerr=%d Z_STREAM_END=%d total_out=%lu\n", zerr, Z_STREAM_END,
  /dalvik/libdex/
ZipArchive.c 583 int zerr; local
605 zerr = inflateInit2(&zstream, -MAX_WBITS);
606 if (zerr != Z_OK) {
607 if (zerr == Z_VERSION_ERROR) {
611 LOGW("Call to inflateInit2 failed (zerr=%d)\n", zerr);
638 zerr = inflate(&zstream, Z_NO_FLUSH);
639 if (zerr != Z_OK && zerr != Z_STREAM_END) {
640 LOGW("Zip: inflate zerr=%d (nIn=%p aIn=%u nOut=%p aOut=%u)\n"
    [all...]
  /external/zlib/examples/
zpipe.c 151 void zerr(int ret) function
188 zerr(ret);
196 zerr(ret);
  /bootable/recovery/minzip/
Zip.c 564 int zerr; local
586 zerr = inflateInit2(&zstream, -MAX_WBITS);
587 if (zerr != Z_OK) {
588 if (zerr == Z_VERSION_ERROR) {
592 LOGE("Call to inflateInit2 failed (zerr=%d)\n", zerr);
621 zerr = inflate(&zstream, Z_NO_FLUSH);
622 if (zerr != Z_OK && zerr != Z_STREAM_END) {
623 LOGD("zlib inflate call failed (zerr=%d)\n", zerr)
    [all...]
  /build/tools/zipalign/
ZipFile.cpp 753 int zerr; local
778 zerr = deflateInit2(&zstream, Z_BEST_COMPRESSION,
780 if (zerr != Z_OK) {
782 if (zerr == Z_VERSION_ERROR) {
786 LOGD("Call to deflateInit2 failed (zerr=%d)\n", zerr);
832 zerr = deflate(&zstream, flush);
833 if (zerr != Z_OK && zerr != Z_STREAM_END) {
834 LOGD("zlib deflate call failed (zerr=%d)\n", zerr)
    [all...]
  /frameworks/base/tools/aapt/
ZipFile.cpp 753 int zerr; local
778 zerr = deflateInit2(&zstream, Z_BEST_COMPRESSION,
780 if (zerr != Z_OK) {
782 if (zerr == Z_VERSION_ERROR) {
786 LOGD("Call to deflateInit2 failed (zerr=%d)\n", zerr);
832 zerr = deflate(&zstream, flush);
833 if (zerr != Z_OK && zerr != Z_STREAM_END) {
834 LOGD("zlib deflate call failed (zerr=%d)\n", zerr)
    [all...]

Completed in 372 milliseconds