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