Searched refs:mFileComment (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/tools/aapt/
H A DZipEntry.cpp132 mCDE.mFileComment = new unsigned char[mCDE.mFileCommentLength+1];
133 strcpy((char*) mCDE.mFileComment, comment);
151 (mCDE.mFileCommentLength > 0 && mCDE.mFileComment == NULL) ||
527 assert(mFileComment == NULL);
590 mFileComment = new unsigned char[mFileCommentLength+1];
591 if (mFileComment == NULL) {
595 if (fread(mFileComment, 1, mFileCommentLength, fp) != mFileCommentLength)
600 mFileComment[mFileCommentLength] = '\0';
649 if (fwrite(mFileComment, 1, mFileCommentLength, fp) != mFileCommentLength)
676 if (mFileComment !
[all...]
H A DZipEntry.h291 mFileComment(NULL)
296 delete[] mFileComment;
323 unsigned char* mFileComment; member in class:android::ZipEntry::CentralDirEntry

Completed in 42 milliseconds