Home
last modified time | relevance | path

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

/build/make/tools/zipalign/
DZipEntry.cpp124 mCDE.mFileCommentLength = strlen(comment); in initNew()
131 if (mCDE.mFileCommentLength > 0) { in initNew()
133 mCDE.mFileComment = new uint8_t[mCDE.mFileCommentLength+1]; in initNew()
160 if (mCDE.mFileCommentLength > 0) { in initFromExternal()
161 mCDE.mFileComment = new uint8_t[mCDE.mFileCommentLength+1]; in initFromExternal()
570 mFileCommentLength = ZipEntry::getShortLE(&buf[0x20]); in read()
608 if (mFileCommentLength != 0) { in read()
609 mFileComment = new uint8_t[mFileCommentLength+1]; in read()
614 if (fread(mFileComment, 1, mFileCommentLength, fp) != mFileCommentLength) in read()
619 mFileComment[mFileCommentLength] = '\0'; in read()
[all …]
DZipEntry.h285 mFileCommentLength(0), in CentralDirEntry()
315 uint16_t mFileCommentLength; variable