Searched refs:ZipFileReader (Results 1 – 9 of 9) sorted by relevance
26 class ZipFileReader {28 static std::shared_ptr<ZipFileReader> CreateZipFileReader(const std::string &filePath);31 ZipFileReader(const std::string &filePath) : filePath_(filePath) {} in ZipFileReader() function32 ZipFileReader(ZipFileReader &) = delete;33 void operator=(ZipFileReader &) = delete;34 virtual ~ZipFileReader();
31 std::shared_ptr<ZipFileReader> ZipFileReader::CreateZipFileReader(const std::string &filePath) in CreateZipFileReader()38 std::shared_ptr<ZipFileReader> result; in CreateZipFileReader()52 ZipFileReader::~ZipFileReader() in ~ZipFileReader()60 size_t ZipFileReader::GetFileLen(const std::string &filePath) in GetFileLen()74 bool ZipFileReader::init() in init()
25 class ZipFileReaderIo : public ZipFileReader {27 ZipFileReaderIo(const std::string &filePath) : ZipFileReader(filePath) {} in ZipFileReaderIo()
25 class ZipFileReaderMem : public ZipFileReader {27 ZipFileReaderMem(const std::string &filePath) : ZipFileReader(filePath) {} in ZipFileReaderMem()
24 class ZipFileReader; variable40 bool CreateFileMapper(std::shared_ptr<ZipFileReader> fileReader, const std::string &fileName,
26 if (!ZipFileReader::init()) { in init()
30 class ZipFileReader; variable323 std::shared_ptr<ZipFileReader> zipFileReader_;
77 bool FileMapper::CreateFileMapper(std::shared_ptr<ZipFileReader> fileReader, const std::string &fil… in CreateFileMapper()
190 zipFileReader_ = ZipFileReader::CreateZipFileReader(pathName_); in Open()