Home | History | Annotate | Download | only in runtime

Lines Matching refs:zip_archive

44 #include "zip_archive.h"
92 UniquePtr<ZipArchive> zip_archive(ZipArchive::OpenFromFd(fd));
93 if (zip_archive.get() == NULL) {
96 UniquePtr<ZipEntry> zip_entry(zip_archive->Find(kClassesDex));
211 UniquePtr<ZipArchive> zip_archive(ZipArchive::OpenFromFd(fd));
212 if (zip_archive.get() == NULL) {
216 return DexFile::Open(*zip_archive.get(), location);
229 const DexFile* DexFile::Open(const ZipArchive& zip_archive, const std::string& location) {
231 UniquePtr<ZipEntry> zip_entry(zip_archive.Find(kClassesDex));