Home
last modified time | relevance | path

Searched refs:GetMultiDexClassesDexName (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Ddex_file_test.cc351 TEST_F(DexFileTest, GetMultiDexClassesDexName) { in TEST_F() argument
354 ASSERT_EQ("/system/app/framework.jar", DexFile::GetMultiDexClassesDexName(0, dex_location)); in TEST_F()
355 …ASSERT_EQ("/system/app/framework.jar:classes2.dex", DexFile::GetMultiDexClassesDexName(1, dex_loca… in TEST_F()
356 …ASSERT_EQ("/system/app/framework.jar:classes101.dex", DexFile::GetMultiDexClassesDexName(100, dex_… in TEST_F()
365 std::string multidex_location = DexFile::GetMultiDexClassesDexName(1, dex_location.c_str()); in TEST_F()
373 …std::string multidex_location_sym = DexFile::GetMultiDexClassesDexName(1, dex_location_sym.c_str()… in TEST_F()
Ddex_file.h877 static std::string GetMultiDexClassesDexName(size_t number, const char* dex_location);
Ddex_file.cc960 std::string DexFile::GetMultiDexClassesDexName(size_t number, const char* dex_location) { in GetMultiDexClassesDexName() function in art::DexFile
Dclass_linker.cc749 std::string next_name_str = DexFile::GetMultiDexClassesDexName(i, dex_location); in LoadMultiDexFilesFromOatFile()