• Home
  • Raw
  • Download

Lines Matching refs:ZipArchive

95 uint64_t GetOwnerTag(const ZipArchive* archive) {  in GetOwnerTag()
101 ZipArchive::ZipArchive(MappedZipFile&& map, bool assume_ownership) in ZipArchive() function in ZipArchive
116 ZipArchive::ZipArchive(const void* address, size_t length) in ZipArchive() function in ZipArchive
124 ZipArchive::~ZipArchive() { in ~ZipArchive()
156 static ZipError FindCentralDirectoryInfoForZip64(const char* debugFileName, ZipArchive* archive, in FindCentralDirectoryInfoForZip64()
216 ZipArchive* archive, in FindCentralDirectoryInfo()
295 static ZipError MapCentralDirectory(const char* debug_file_name, ZipArchive* archive) { in MapCentralDirectory()
481 static ZipError ParseZipArchive(ZipArchive* archive) { in ParseZipArchive()
600 static int32_t OpenArchiveInternal(ZipArchive* archive, const char* debug_file_name) { in OpenArchiveInternal()
607 ZipArchive* archive = new ZipArchive(MappedZipFile(fd), assume_ownership); in OpenArchiveFd()
614 ZipArchive* archive = new ZipArchive(MappedZipFile(fd, length, offset), assume_ownership); in OpenArchiveFdRange()
632 ZipArchive* archive = new ZipArchive(MappedZipFile(fd), true); in OpenArchive()
645 ZipArchive* archive = new ZipArchive(address, length); in OpenArchiveFromMemory()
716 static int32_t FindEntry(const ZipArchive* archive, std::string_view entryName, in FindEntry()
950 ZipArchive* archive;
956 IterationHandle(ZipArchive* archive, std::function<bool(std::string_view)> in_matcher) in IterationHandle()
1069 ZipArchive* archive = handle->archive; in Next()
1621 bool ZipArchive::InitializeCentralDirectory(off64_t cd_start_offset, size_t cd_size) { in InitializeCentralDirectory()