Lines Matching refs:mFileCommentLength
123 mCDE.mFileCommentLength = strlen(comment); in initNew()
130 if (mCDE.mFileCommentLength > 0) { in initNew()
132 mCDE.mFileComment = new unsigned char[mCDE.mFileCommentLength+1]; in initNew()
151 (mCDE.mFileCommentLength > 0 && mCDE.mFileComment == NULL) || in initFromExternal()
551 mFileCommentLength = ZipEntry::getShortLE(&buf[0x20]); in read()
589 if (mFileCommentLength != 0) { in read()
590 mFileComment = new unsigned char[mFileCommentLength+1]; in read()
595 if (fread(mFileComment, 1, mFileCommentLength, fp) != mFileCommentLength) in read()
600 mFileComment[mFileCommentLength] = '\0'; in read()
626 ZipEntry::putShortLE(&buf[0x20], mFileCommentLength); in write()
648 if (mFileCommentLength != 0) { in write()
649 if (fwrite(mFileComment, 1, mFileCommentLength, fp) != mFileCommentLength) in write()
669 mFileNameLength, mExtraFieldLength, mFileCommentLength); in dump()
705 mFileCommentLength = src.mFileCommentLength; in operator =()
719 if (mFileCommentLength > 0) { in operator =()
720 mFileComment = new unsigned char[mFileCommentLength + 1]; in operator =()