Home
last modified time | relevance | path

Searched refs:mZipFile (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/libs/androidfw/
H A DAssetManager.cpp1432 if (mZipFile == NULL) { in SharedZip()
1446 if (mZipFile == NULL) { in SharedZip()
1476 return mZipFile; in getZip()
1552 if (mZipFile != NULL) { in ~SharedZip()
1553 delete mZipFile; in ~SharedZip()
1569 size_t N = mZipFile.size(); in ~ZipSet()
1579 mZipFile.editItemAt(idx) = NULL; in closeZip()
1593 sp<SharedZip> zip = mZipFile[idx]; in getSharedZip()
1654 const size_t N = mZipFile.size(); in isUpToDate()
1656 if (mZipFile[i] != NULL && !mZipFile[i]->isUpToDate()) { in isUpToDate()
[all …]
/aosp14/frameworks/base/packages/DynamicSystemInstallationService/src/com/android/dynsystem/
H A DInstallationAsyncTask.java194 private ZipFile mZipFile; field in InstallationAsyncTask
402 mZipFile = new ZipFile(new File(new URL(mUrl).toURI())); in verifyAndPrepare()
415 if (mZipFile != null) { in verifyAndPrepare()
418 mTotalReadonlyPartitions = calculateNumberOfImagesInLocalZip(mZipFile); in verifyAndPrepare()
603 Enumeration<? extends ZipEntry> entries = mZipFile.entries(); in installLocalZipUpdate()
609 installImageFromAnEntry(entry, mZipFile.getInputStream(entry)); in installLocalZipUpdate()
793 if (mZipFile != null) { in close()
794 mZipFile.close(); in close()
795 mZipFile = null; in close()
/aosp14/frameworks/base/core/jni/
H A Dcom_android_internal_content_NativeLibraryHelper.cpp284 : mZipFile(zipFile), mDebuggable(debuggable), mCookie(cookie), mLastSlash(nullptr) { in NativeLibrariesIterator()
301 while ((next = mZipFile->nextEntry(mCookie)) != nullptr) { in next()
303 if (mZipFile->getEntryFileName(next, fileName, sizeof(fileName))) { in next()
326 mZipFile->endIteration(mCookie); in ~NativeLibrariesIterator()
331 ZipFileRO* const mZipFile; member in android::NativeLibrariesIterator
/aosp14/frameworks/base/libs/androidfw/include/androidfw/
H A DAssetManager.h288 ZipFileRO* mZipFile; variable
339 mutable Vector<sp<SharedZip> > mZipFile; variable