Home | History | Annotate | Download | only in zipalign

Lines Matching refs:mFileCommentLength

124         mCDE.mFileCommentLength = strlen(comment);
131 if (mCDE.mFileCommentLength > 0) {
133 mCDE.mFileComment = new uint8_t[mCDE.mFileCommentLength+1];
160 if (mCDE.mFileCommentLength > 0) {
161 mCDE.mFileComment = new uint8_t[mCDE.mFileCommentLength+1];
570 mFileCommentLength = ZipEntry::getShortLE(&buf[0x20]);
608 if (mFileCommentLength != 0) {
609 mFileComment = new uint8_t[mFileCommentLength+1];
614 if (fread(mFileComment, 1, mFileCommentLength, fp) != mFileCommentLength)
619 mFileComment[mFileCommentLength] = '\0';
645 ZipEntry::putShortLE(&buf[0x20], mFileCommentLength);
667 if (mFileCommentLength != 0) {
668 if (fwrite(mFileComment, 1, mFileCommentLength, fp) != mFileCommentLength)
688 mFileNameLength, mExtraFieldLength, mFileCommentLength);