Searched refs:mCommentLen (Results 1 – 2 of 2) sorted by relevance
/build/tools/zipalign/ |
D | ZipFile.cpp | 1242 mCommentLen = ZipEntry::getShortLE(&buf[0x14]); in readBuf() 1246 if (mCommentLen > 0) { in readBuf() 1247 if (kEOCDLen + mCommentLen > len) { in readBuf() 1249 kEOCDLen, mCommentLen, len); in readBuf() 1252 mComment = new unsigned char[mCommentLen]; in readBuf() 1253 memcpy(mComment, buf + kEOCDLen, mCommentLen); in readBuf() 1273 ZipEntry::putShortLE(&buf[0x14], mCommentLen); in write() 1277 if (mCommentLen > 0) { in write() 1279 if (fwrite(mComment, mCommentLen, 1, fp) != mCommentLen) in write() 1295 mCentralDirSize, mCentralDirOffset, mCommentLen); in dump()
|
D | ZipFile.h | 181 mCommentLen(0), in EndOfCentralDir() 198 unsigned short mCommentLen; variable
|