Home | History | Annotate | Download | only in aapt

Lines Matching defs:unlen

1153     size_t unlen = entry->getUncompressedLen();
1156 void* buf = malloc(unlen);
1171 ssize_t amt = fread(buf, 1, unlen, mZipFp);
1172 if (amt != (ssize_t)unlen) {
1178 const unsigned char* end = p+unlen;
1192 if (!ZipUtils::inflateToBuffer(mZipFp, buf, unlen, clen)) {