Searched refs:mCommentLen (Results 1 – 2 of 2) sorted by relevance
/build/tools/zipalign/ |
D | ZipFile.cpp | 1319 mCommentLen = ZipEntry::getShortLE(&buf[0x14]); in readBuf() 1323 if (mCommentLen > 0) { in readBuf() 1324 if (kEOCDLen + mCommentLen > len) { in readBuf() 1326 kEOCDLen, mCommentLen, len); in readBuf() 1329 mComment = new unsigned char[mCommentLen]; in readBuf() 1330 memcpy(mComment, buf + kEOCDLen, mCommentLen); in readBuf() 1350 ZipEntry::putShortLE(&buf[0x14], mCommentLen); in write() 1354 if (mCommentLen > 0) { in write() 1356 if (fwrite(mComment, mCommentLen, 1, fp) != mCommentLen) in write() 1372 mCentralDirSize, mCentralDirOffset, mCommentLen); in dump()
|
D | ZipFile.h | 190 mCommentLen(0), in EndOfCentralDir() 207 unsigned short mCommentLen; variable
|