• Home
  • Raw
  • Download

Lines Matching refs:ZipArchive

148 static uint64_t GetOwnerTag(const ZipArchive* archive) {  in GetOwnerTag()
154 ZipArchive::ZipArchive(MappedZipFile&& map, bool assume_ownership) in ZipArchive() function in ZipArchive
169 ZipArchive::ZipArchive(const void* address, size_t length) in ZipArchive() function in ZipArchive
177 ZipArchive::~ZipArchive() { in ~ZipArchive()
209 static ZipError FindCentralDirectoryInfoForZip64(const char* debugFileName, ZipArchive* archive, in FindCentralDirectoryInfoForZip64()
274 ZipArchive* archive, in FindCentralDirectoryInfo()
354 static ZipError MapCentralDirectory(const char* debug_file_name, ZipArchive* archive) { in MapCentralDirectory()
538 static ZipError ParseZipArchive(ZipArchive* archive) { in ParseZipArchive()
661 static int32_t OpenArchiveInternal(ZipArchive* archive, const char* debug_file_name) { in OpenArchiveInternal()
668 ZipArchive* archive = new ZipArchive(MappedZipFile(fd), assume_ownership); in OpenArchiveFd()
675 ZipArchive* archive = new ZipArchive(MappedZipFile(fd, length, offset), assume_ownership); in OpenArchiveFdRange()
693 ZipArchive* archive = new ZipArchive(MappedZipFile(fd), true); in OpenArchive()
706 ZipArchive* archive = new ZipArchive(address, length); in OpenArchiveFromMemory()
778 static int32_t FindEntry(const ZipArchive* archive, std::string_view entryName, in FindEntry()
1029 ZipArchive* archive;
1035 IterationHandle(ZipArchive* archive, std::function<bool(std::string_view)> in_matcher) in IterationHandle()
1151 ZipArchive* archive = handle->archive; in Next()
1812 bool ZipArchive::InitializeCentralDirectory(off64_t cd_start_offset, size_t cd_size) { in InitializeCentralDirectory()