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

/frameworks/base/tools/aapt/
H A DZipFile.h181 mCommentLen(0),
198 unsigned short mCommentLen; member in class:android::ZipFile::EndOfCentralDir
H A DZipFile.cpp1242 mCommentLen = ZipEntry::getShortLE(&buf[0x14]);
1246 if (mCommentLen > 0) {
1247 if (kEOCDLen + mCommentLen > len) {
1249 kEOCDLen, mCommentLen, len);
1252 mComment = new unsigned char[mCommentLen];
1253 memcpy(mComment, buf + kEOCDLen, mCommentLen);
1273 ZipEntry::putShortLE(&buf[0x14], mCommentLen);
1277 if (mCommentLen > 0) {
1279 if (fwrite(mComment, mCommentLen, 1, fp) != mCommentLen)
[all...]

Completed in 109 milliseconds