Searched refs:mCommentLen (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/tools/aapt/ |
D | ZipFile.cpp | 1239 mCommentLen = ZipEntry::getShortLE(&buf[0x14]); in readBuf() 1243 if (mCommentLen > 0) { in readBuf() 1244 if (kEOCDLen + mCommentLen > len) { in readBuf() 1246 kEOCDLen, mCommentLen, len); in readBuf() 1249 mComment = new unsigned char[mCommentLen]; in readBuf() 1250 memcpy(mComment, buf + kEOCDLen, mCommentLen); in readBuf() 1270 ZipEntry::putShortLE(&buf[0x14], mCommentLen); in write() 1274 if (mCommentLen > 0) { in write() 1276 if (fwrite(mComment, mCommentLen, 1, fp) != mCommentLen) in write() 1292 mCentralDirSize, mCentralDirOffset, mCommentLen); in dump()
|
D | ZipFile.h | 181 mCommentLen(0), in EndOfCentralDir() 198 unsigned short mCommentLen; variable
|