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

Method OpenWithDataSection

Bcore/src/main/cpp/dex/dex_file_loader.cc:241–264  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

239}
240
241std::unique_ptr<const DexFile> DexFileLoader::OpenWithDataSection(
242 const uint8_t* base,
243 size_t size,
244 const uint8_t* data_base,
245 size_t data_size,
246 const std::string& location,
247 uint32_t location_checksum,
248 const OatDexFile* oat_dex_file,
249 bool verify,
250 bool verify_checksum,
251 std::string* error_msg) const {
252 return OpenCommon(base,
253 size,
254 data_base,
255 data_size,
256 location,
257 location_checksum,
258 oat_dex_file,
259 verify,
260 verify_checksum,
261 error_msg,
262 /*container*/ nullptr,
263 /*verify_result*/ nullptr);
264}
265
266bool DexFileLoader::OpenAll(
267 const uint8_t* base,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected