Home | History | Annotate | Download | only in aapt

Lines Matching refs:mCommentLen

1239     mCommentLen = ZipEntry::getShortLE(&buf[0x14]);
1243 if (mCommentLen > 0) {
1244 if (kEOCDLen + mCommentLen > len) {
1246 kEOCDLen, mCommentLen, len);
1249 mComment = new unsigned char[mCommentLen];
1250 memcpy(mComment, buf + kEOCDLen, mCommentLen);
1270 ZipEntry::putShortLE(&buf[0x14], mCommentLen);
1274 if (mCommentLen > 0) {
1276 if (fwrite(mComment, mCommentLen, 1, fp) != mCommentLen)
1292 mCentralDirSize, mCentralDirOffset, mCommentLen);