Home | History | Annotate | Download | only in zipalign

Lines Matching refs:mCommentLen

1322     mCommentLen = ZipEntry::getShortLE(&buf[0x14]);
1326 if (mCommentLen > 0) {
1327 if (kEOCDLen + mCommentLen > len) {
1329 kEOCDLen, mCommentLen, len);
1332 mComment = new uint8_t[mCommentLen];
1333 memcpy(mComment, buf + kEOCDLen, mCommentLen);
1353 ZipEntry::putShortLE(&buf[0x14], mCommentLen);
1357 if (mCommentLen > 0) {
1359 if (fwrite(mComment, mCommentLen, 1, fp) != mCommentLen)
1375 mCentralDirSize, mCentralDirOffset, mCommentLen);