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

  /art/libartbase/base/
zip_archive.h 33 struct ZipArchive;
35 typedef ZipArchive* ZipArchiveHandle;
39 class ZipArchive;
52 // the original file that the ZipArchive was open with is used
81 friend class ZipArchive;
85 class ZipArchive {
87 // return new ZipArchive instance on success, null on error.
88 static ZipArchive* Open(const char* filename, std::string* error_msg);
89 static ZipArchive* OpenFromFd(int fd, const char* filename, std::string* error_msg);
93 ~ZipArchive();
    [all...]
zip_archive.cc 27 #include "ziparchive/zip_archive.h"
100 // Should not happen since we don't have a memory ZipArchive constructor.
101 // However the underlying ZipArchive isn't required to have an FD,
225 ZipArchive* ZipArchive::Open(const char* filename, std::string* error_msg) {
237 return new ZipArchive(handle);
240 ZipArchive* ZipArchive::OpenFromFd(int fd, const char* filename, std::string* error_msg) {
253 return new ZipArchive(handle);
256 ZipEntry* ZipArchive::Find(const char* name, std::string* error_msg) const
    [all...]

Completed in 254 milliseconds