| 177 | } |
| 178 | |
| 179 | std::string DexFileLoader::GetMultiDexClassesDexName(size_t index) { |
| 180 | return (index == 0) ? "classes.dex" : StringPrintf("classes%zu.dex", index + 1); |
| 181 | } |
| 182 | |
| 183 | std::string DexFileLoader::GetMultiDexLocation(size_t index, const char* dex_location) { |
| 184 | return (index == 0) |
nothing calls this directly
no test coverage detected