Home
last modified time | relevance | path

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

/build/tools/zipalign/
DZipEntry.cpp122 mCDE.mFileCommentLength = strlen(comment); in initNew()
129 if (mCDE.mFileCommentLength > 0) { in initNew()
131 mCDE.mFileComment = new unsigned char[mCDE.mFileCommentLength+1]; in initNew()
158 if (mCDE.mFileCommentLength > 0) { in initFromExternal()
159 mCDE.mFileComment = new unsigned char[mCDE.mFileCommentLength+1]; in initFromExternal()
568 mFileCommentLength = ZipEntry::getShortLE(&buf[0x20]); in read()
606 if (mFileCommentLength != 0) { in read()
607 mFileComment = new unsigned char[mFileCommentLength+1]; in read()
612 if (fread(mFileComment, 1, mFileCommentLength, fp) != mFileCommentLength) in read()
617 mFileComment[mFileCommentLength] = '\0'; in read()
[all …]
DZipEntry.h283 mFileCommentLength(0), in CentralDirEntry()
313 unsigned short mFileCommentLength; variable