MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / EntryReader

Method EntryReader

Bcore/src/main/cpp/ziparchive/zip_archive.cc:874–875  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

872class EntryReader : public zip_archive_lkchan::Reader {
873 public:
874 EntryReader(const MappedZipFile& zip_file, const ZipEntry* entry)
875 : Reader(), zip_file_(zip_file), entry_(entry) {}
876
877 virtual bool ReadAtOffset(uint8_t* buf, size_t len, uint32_t offset) const {
878 return zip_file_.ReadAtOffset(buf, len, entry_->offset + offset);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected