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

Method IsMultiDexLocation

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

Source from the content-addressed store, hash-verified

173}
174
175bool DexFileLoader::IsMultiDexLocation(const char* location) {
176 return strrchr(location, kMultiDexSeparator) != nullptr;
177}
178
179std::string DexFileLoader::GetMultiDexClassesDexName(size_t index) {
180 return (index == 0) ? "classes.dex" : StringPrintf("classes%zu.dex", index + 1);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected