Home | History | Annotate | Download | only in runtime

Lines Matching defs:ZipArchive

28 #include "ziparchive/zip_archive.h"
99 // Should not happen since we don't have a memory ZipArchive constructor.
100 // However the underlying ZipArchive isn't required to have an FD,
205 ZipArchive* ZipArchive::Open(const char* filename, std::string* error_msg) {
217 return new ZipArchive(handle);
220 ZipArchive* ZipArchive::OpenFromFd(int fd, const char* filename, std::string* error_msg) {
233 return new ZipArchive(handle);
236 ZipEntry* ZipArchive::Find(const char* name, std::string* error_msg) const {
250 ZipArchive::~ZipArchive() {