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

/frameworks/base/tools/aapt/
H A DZipFile.cpp63 assert(mZipFp == NULL); // no reopen
96 mZipFp = fopen(zipFileName, openflags);
97 if (mZipFp == NULL) {
212 fseek(mZipFp, 0, SEEK_END);
213 fileLength = ftell(mZipFp);
214 rewind(mZipFp);
238 if (fseek(mZipFp, seekStart, SEEK_SET) != 0) {
245 if (fread(buf, 1, readAmount, mZipFp) != (size_t) readAmount) {
296 if (fseek(mZipFp, mEOCD.mCentralDirOffset, SEEK_SET) != 0) {
311 result = pEntry->initFromCDE(mZipFp);
[all...]
H A DZipFile.h47 : mZipFp(NULL), mReadOnly(false), mNeedCDRewrite(false)
52 if (mZipFp != NULL)
53 fclose(mZipFp);
249 FILE* mZipFp; // Zip file pointer member in class:android::ZipFile

Completed in 128 milliseconds