Lines Matching refs:mFileCommentLength
123 mCDE.mFileCommentLength = strlen(comment); in initNew()
130 if (mCDE.mFileCommentLength > 0) { in initNew()
132 mCDE.mFileComment = new uint8_t[mCDE.mFileCommentLength+1]; in initNew()
158 if (mCDE.mFileCommentLength > 0) { in initFromExternal()
159 mCDE.mFileComment = new uint8_t[mCDE.mFileCommentLength+1]; in initFromExternal()
568 mFileCommentLength = ZipEntry::getShortLE(&buf[0x20]); in read()
606 if (mFileCommentLength != 0) { in read()
607 mFileComment = new uint8_t[mFileCommentLength+1]; in read()
612 if (fread(mFileComment, 1, mFileCommentLength, fp) != mFileCommentLength) in read()
617 mFileComment[mFileCommentLength] = '\0'; in read()
643 ZipEntry::putShortLE(&buf[0x20], mFileCommentLength); in write()
665 if (mFileCommentLength != 0) { in write()
666 if (fwrite(mFileComment, 1, mFileCommentLength, fp) != mFileCommentLength) in write()
686 mFileNameLength, mExtraFieldLength, mFileCommentLength); in dump()