Searched refs:mZipFp (Results 1 – 2 of 2) sorted by relevance
/build/tools/zipalign/ |
D | ZipFile.cpp | 65 assert(mZipFp == NULL); // no reopen in open() 98 mZipFp = fopen(zipFileName, openflags); in open() 99 if (mZipFp == NULL) { in open() 214 fseek(mZipFp, 0, SEEK_END); in readCentralDir() 215 fileLength = ftell(mZipFp); in readCentralDir() 216 rewind(mZipFp); in readCentralDir() 240 if (fseek(mZipFp, seekStart, SEEK_SET) != 0) { in readCentralDir() 247 if (fread(buf, 1, readAmount, mZipFp) != (size_t) readAmount) { in readCentralDir() 298 if (fseek(mZipFp, mEOCD.mCentralDirOffset, SEEK_SET) != 0) { in readCentralDir() 313 result = pEntry->initFromCDE(mZipFp); in readCentralDir() [all …]
|
D | ZipFile.h | 47 : mZipFp(NULL), mReadOnly(false), mNeedCDRewrite(false) in ZipFile() 52 if (mZipFp != NULL) in ~ZipFile() 53 fclose(mZipFp); in ~ZipFile() 258 FILE* mZipFp; // Zip file pointer variable
|