Home | History | Annotate | Download | only in zipalign

Lines Matching refs:mCommentLen

1242     mCommentLen = ZipEntry::getShortLE(&buf[0x14]);
1246 if (mCommentLen > 0) {
1247 if (kEOCDLen + mCommentLen > len) {
1249 kEOCDLen, mCommentLen, len);
1252 mComment = new unsigned char[mCommentLen];
1253 memcpy(mComment, buf + kEOCDLen, mCommentLen);
1273 ZipEntry::putShortLE(&buf[0x14], mCommentLen);
1277 if (mCommentLen > 0) {
1279 if (fwrite(mComment, mCommentLen, 1, fp) != mCommentLen)
1295 mCentralDirSize, mCentralDirOffset, mCommentLen);