HomeSort by relevance Sort by last modified time
    Searched refs:mFileComment (Results 1 - 4 of 4) sorted by null

  /frameworks/base/tools/aapt/
ZipEntry.cpp 132 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 != NULL
    [all...]
ZipEntry.h 291 mFileComment(NULL)
296 delete[] mFileComment;
323 unsigned char* mFileComment;
  /build/make/tools/zipalign/
ZipEntry.cpp 133 mCDE.mFileComment = new uint8_t[mCDE.mFileCommentLength+1];
135 strcpy((char*) mCDE.mFileComment, comment);
161 mCDE.mFileComment = new uint8_t[mCDE.mFileCommentLength+1];
162 if (mCDE.mFileComment == NULL)
164 strcpy((char*) mCDE.mFileComment, (char*)pEntry->mCDE.mFileComment);
546 assert(mFileComment == NULL);
609 mFileComment = new uint8_t[mFileCommentLength+1];
610 if (mFileComment == NULL) {
614 if (fread(mFileComment, 1, mFileCommentLength, fp) != mFileCommentLength
    [all...]
ZipEntry.h 292 mFileComment(NULL)
297 delete[] mFileComment;
322 uint8_t* mFileComment;

Completed in 418 milliseconds