Searched defs:ZipArchive (Results 1 - 2 of 2) sorted by last modified time

/art/runtime/
H A Dzip_archive.cc104 // Should not happen since we don't have a memory ZipArchive constructor.
105 // However the underlying ZipArchive isn't required to have an FD,
223 ZipArchive* ZipArchive::Open(const char* filename, std::string* error_msg) {
235 return new ZipArchive(handle);
238 ZipArchive* ZipArchive::OpenFromFd(int fd, const char* filename, std::string* error_msg) {
251 return new ZipArchive(handle);
254 ZipEntry* ZipArchive::Find(const char* name, std::string* error_msg) const {
268 ZipArchive
[all...]
H A Dzip_archive.h38 class ZipArchive;
50 // the original file that the ZipArchive was open with is used
79 friend class ZipArchive;
83 class ZipArchive { class in namespace:art
85 // return new ZipArchive instance on success, null on error.
86 static ZipArchive* Open(const char* filename, std::string* error_msg);
87 static ZipArchive* OpenFromFd(int fd, const char* filename, std::string* error_msg);
91 ~ZipArchive();
94 explicit ZipArchive(ZipArchiveHandle handle) : handle_(handle) {} function in class:art::ZipArchive
100 DISALLOW_COPY_AND_ASSIGN(ZipArchive);
[all...]

Completed in 49 milliseconds