Lines Matching refs:mCommentLen
1390 mCommentLen = ZipEntry::getShortLE(&buf[0x14]); in readBuf()
1394 if (mCommentLen > 0) { in readBuf()
1395 if (kEOCDLen + mCommentLen > len) { in readBuf()
1397 kEOCDLen, mCommentLen, len); in readBuf()
1400 mComment = new uint8_t[mCommentLen]; in readBuf()
1401 memcpy(mComment, buf + kEOCDLen, mCommentLen); in readBuf()
1421 ZipEntry::putShortLE(&buf[0x14], mCommentLen); in write()
1427 if (mCommentLen > 0) { in write()
1429 if (fwrite(mComment, mCommentLen, 1, fp) != mCommentLen) { in write()
1431 (int) mCommentLen, strerror(errno)); in write()
1448 mCentralDirSize, mCentralDirOffset, mCommentLen); in dump()