Searched defs:zip_archive (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Dzip_archive.h47 ZipEntry(const ZipArchive* zip_archive, const byte* ptr) : zip_archive_(zip_archive), ptr_(ptr) {} argument
H A Ddex_file.cc44 #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) { argument
231 UniquePtr<ZipEntry> zip_entry(zip_archive.Find(kClassesDex));

Completed in 3552 milliseconds