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

  /build/tools/ziptime/
ZipFile.h 34 ZipFile(void) : mZipFp(NULL) {}
36 if (mZipFp != NULL)
37 fclose(mZipFp);
76 FILE* mZipFp; // Zip file pointer
ZipFile.cpp 38 assert(mZipFp == NULL); // no reopen
41 mZipFp = fopen(zipFileName, "r+b");
42 if (mZipFp == NULL) {
81 fseek(mZipFp, 0, SEEK_END);
82 fileLength = ftell(mZipFp);
83 rewind(mZipFp);
107 if (fseek(mZipFp, seekStart, SEEK_SET) != 0) {
114 if (fread(buf, 1, readAmount, mZipFp) != (size_t) readAmount) {
155 if (fseek(mZipFp, mEOCD.mCentralDirOffset, SEEK_SET) != 0) {
169 result = pEntry->initAndRewriteFromCDE(mZipFp);
    [all...]
  /build/tools/zipalign/
ZipFile.cpp 66 assert(mZipFp == NULL); // no reopen
99 mZipFp = fopen(zipFileName, openflags);
100 if (mZipFp == NULL) {
215 fseek(mZipFp, 0, SEEK_END);
216 fileLength = ftell(mZipFp);
217 rewind(mZipFp);
241 if (fseek(mZipFp, seekStart, SEEK_SET) != 0) {
248 if (fread(buf, 1, readAmount, mZipFp) != (size_t) readAmount) {
299 if (fseek(mZipFp, mEOCD.mCentralDirOffset, SEEK_SET) != 0) {
314 result = pEntry->initFromCDE(mZipFp);
    [all...]
ZipFile.h 47 : mZipFp(NULL), mReadOnly(false), mNeedCDRewrite(false)
52 if (mZipFp != NULL)
53 fclose(mZipFp);
258 FILE* mZipFp; // Zip file pointer
  /frameworks/base/tools/aapt/
ZipFile.cpp 63 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...]
ZipFile.h 47 : mZipFp(NULL), mReadOnly(false), mNeedCDRewrite(false)
52 if (mZipFp != NULL)
53 fclose(mZipFp);
249 FILE* mZipFp; // Zip file pointer

Completed in 423 milliseconds