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

Method GetMultiDexLocation

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

Source from the content-addressed store, hash-verified

181}
182
183std::string DexFileLoader::GetMultiDexLocation(size_t index, const char* dex_location) {
184 return (index == 0)
185 ? dex_location
186 : StringPrintf("%s%cclasses%zu.dex", dex_location, kMultiDexSeparator, index + 1);
187}
188
189std::string DexFileLoader::GetDexCanonicalLocation(const char* dex_location) {
190 CHECK_NE(dex_location, static_cast<const char*>(nullptr));

Callers

nothing calls this directly

Calls 1

StringPrintfFunction · 0.85

Tested by

no test coverage detected