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

Function OpenArchiveFd

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

Source from the content-addressed store, hash-verified

422}
423
424int32_t OpenArchiveFd(int fd, const char* debug_file_name, ZipArchiveHandle* handle,
425 bool assume_ownership) {
426 ZipArchive* archive = new ZipArchive(fd, assume_ownership);
427 *handle = archive;
428 return OpenArchiveInternal(archive, debug_file_name);
429}
430
431int32_t OpenArchive(const char* fileName, ZipArchiveHandle* handle) {
432 const int fd = open(fileName, O_RDONLY | O_BINARY, 0);

Callers

nothing calls this directly

Calls 1

OpenArchiveInternalFunction · 0.85

Tested by

no test coverage detected