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

Function ExtractToMemory

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

Source from the content-addressed store, hash-verified

1077}
1078
1079int32_t ExtractToMemory(ZipArchiveHandle handle, ZipEntry* entry, uint8_t* begin, uint32_t size) {
1080 MemoryWriter writer(begin, size);
1081 return ExtractToWriter(handle, entry, &writer);
1082}
1083
1084int32_t ExtractEntryToFile(ZipArchiveHandle handle, ZipEntry* entry, int fd) {
1085 auto writer = FileWriter::Create(fd, entry);

Callers 1

ExtractMethod · 0.85

Calls 1

ExtractToWriterFunction · 0.85

Tested by

no test coverage detected