Home
last modified time | relevance | path

Searched refs:mCommentLen (Results 1 – 2 of 2) sorted by relevance

/build/make/tools/zipalign/
DZipFile.cpp1344 mCommentLen = ZipEntry::getShortLE(&buf[0x14]); in readBuf()
1348 if (mCommentLen > 0) { in readBuf()
1349 if (kEOCDLen + mCommentLen > len) { in readBuf()
1351 kEOCDLen, mCommentLen, len); in readBuf()
1354 mComment = new uint8_t[mCommentLen]; in readBuf()
1355 memcpy(mComment, buf + kEOCDLen, mCommentLen); in readBuf()
1375 ZipEntry::putShortLE(&buf[0x14], mCommentLen); in write()
1379 if (mCommentLen > 0) { in write()
1381 if (fwrite(mComment, mCommentLen, 1, fp) != mCommentLen) in write()
1397 mCentralDirSize, mCentralDirOffset, mCommentLen); in dump()
DZipFile.h175 mCommentLen(0), in EndOfCentralDir()
192 uint16_t mCommentLen; variable