Home
last modified time | relevance | path

Searched refs:GetMultiDexLocation (Results 1 – 13 of 13) sorted by relevance

/art/libdexfile/dex/
Ddex_file_loader_test.cc393 TEST_F(DexFileLoaderTest, GetMultiDexLocation) { in TEST_F() argument
396 ASSERT_EQ("/system/app/framework.jar", DexFileLoader::GetMultiDexLocation(0, dex_location)); in TEST_F()
398 DexFileLoader::GetMultiDexLocation(1, dex_location)); in TEST_F()
400 DexFileLoader::GetMultiDexLocation(100, dex_location)); in TEST_F()
Dart_dex_file_loader_test.cc97 EXPECT_EQ(dexes[0]->GetLocation(), DexFileLoader::GetMultiDexLocation(0, multidex_file.c_str())); in TEST_F()
101 EXPECT_EQ(dexes[1]->GetLocation(), DexFileLoader::GetMultiDexLocation(1, multidex_file.c_str())); in TEST_F()
308 std::string multidex_location = DexFileLoader::GetMultiDexLocation(1, dex_location.c_str()); in TEST_F()
316 std::string multidex_location_sym = DexFileLoader::GetMultiDexLocation( in TEST_F()
Ddex_file_loader.h69 static std::string GetMultiDexLocation(size_t index, const char* dex_location);
Ddex_file_loader.cc179 std::string DexFileLoader::GetMultiDexLocation(size_t index, const char* dex_location) { in GetMultiDexLocation() function in art::DexFileLoader
505 std::string fake_location = GetMultiDexLocation(i, location.c_str()); in OpenAllDexFilesFromZip()
Dart_dex_file_loader.cc138 dex_locations->push_back(GetMultiDexLocation(idx, filename)); in GetMultiDexChecksums()
528 std::string fake_location = GetMultiDexLocation(i, location.c_str()); in OpenAllDexFilesFromZip()
/art/dex2oat/linker/
Doat_writer_test.cc791 ASSERT_EQ(DexFileLoader::GetMultiDexLocation(0, zip_file.GetFilename().c_str()), in TestZipFileInput()
798 ASSERT_EQ(DexFileLoader::GetMultiDexLocation(1, zip_file.GetFilename().c_str()), in TestZipFileInput()
840 ASSERT_EQ(DexFileLoader::GetMultiDexLocation(0, zip_file.GetFilename().c_str()), in TestZipFileInput()
847 ASSERT_EQ(DexFileLoader::GetMultiDexLocation(1, zip_file.GetFilename().c_str()), in TestZipFileInput()
Doat_writer.cc582 zipped_dex_file_locations_.push_back(DexFileLoader::GetMultiDexLocation(i, location)); in AddDexFileSource()
620 zipped_dex_file_locations_.push_back(DexFileLoader::GetMultiDexLocation(i, location)); in AddVdexDexFilesSource()
/art/runtime/
Doat_file_assistant.cc301 std::string multidex_dex_location = DexFileLoader::GetMultiDexLocation(i, dex_location.c_str()); in LoadDexFiles()
355 std::string dex = DexFileLoader::GetMultiDexLocation(i, dex_location_.c_str()); in DexChecksumUpToDate()
385 std::string dex = DexFileLoader::GetMultiDexLocation(i, dex_location_.c_str()); in DexChecksumUpToDate()
Dvdex_file.cc211 std::string location = DexFileLoader::GetMultiDexLocation(i, kVdexLocation); in OpenAllDexFiles()
Doat_file_manager.cc500 DexFileLoader::GetMultiDexLocation(i, dex_location.c_str()), in OpenDexFilesFromOat_Impl()
Doat_file.cc1691 std::string location = DexFileLoader::GetMultiDexLocation(i, dex_location.c_str()); in Open()
/art/libprofile/profile/
Dprofile_compilation_info.cc2152 std::string dex_location = DexFileLoader::GetMultiDexLocation(i, base_dex_location.c_str()); in GenerateTestProfile()
/art/runtime/gc/space/
Dimage_space.cc3305 std::string multi_dex_location = DexFileLoader::GetMultiDexLocation( in ValidateOatFile()