| 181 | } |
| 182 | |
| 183 | std::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 | |
| 189 | std::string DexFileLoader::GetDexCanonicalLocation(const char* dex_location) { |
| 190 | CHECK_NE(dex_location, static_cast<const char*>(nullptr)); |
nothing calls this directly
no test coverage detected