Lines Matching refs:MappedZipFile
101 ZipArchive::ZipArchive(MappedZipFile&& map, bool assume_ownership) in ZipArchive()
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()
665 static int32_t ValidateDataDescriptor(MappedZipFile& mapped_zip, const ZipEntry64* entry) { in ValidateDataDescriptor()
1227 EntryReader(const MappedZipFile& zip_file, const ZipEntry64* entry) in EntryReader()
1237 const MappedZipFile& zip_file_;
1375 static int32_t InflateEntryToWriter(MappedZipFile& mapped_zip, const ZipEntry64* entry, in InflateEntryToWriter()
1383 static int32_t CopyEntryToWriter(MappedZipFile& mapped_zip, const ZipEntry64* entry, in CopyEntryToWriter()
1531 int MappedZipFile::GetFileDescriptor() const { in GetFileDescriptor()
1539 const void* MappedZipFile::GetBasePtr() const { in GetBasePtr()
1547 off64_t MappedZipFile::GetFileOffset() const { in GetFileOffset()
1551 off64_t MappedZipFile::GetFileLength() const { in GetFileLength()
1571 bool MappedZipFile::ReadAtOffset(uint8_t* buf, size_t len, off64_t off) const { in ReadAtOffset()