Searched refs:GetOatDexFiles (Results 1 – 8 of 8) sorted by relevance
/art/dex2oat/linker/ |
D | oat_writer_test.cc | 619 ASSERT_EQ(2u, opened_oat_file->GetOatDexFiles().size()); in TestDexFileInput() 621 opened_oat_file->GetOatDexFiles()[0]->OpenDexFile(&error_msg); in TestDexFileInput() 623 opened_oat_file->GetOatDexFiles()[1]->OpenDexFile(&error_msg); in TestDexFileInput() 625 ASSERT_EQ(opened_oat_file->GetOatDexFiles()[0]->GetDexFileLocationChecksum(), in TestDexFileInput() 627 ASSERT_EQ(opened_oat_file->GetOatDexFiles()[1]->GetDexFileLocationChecksum(), in TestDexFileInput() 745 ASSERT_EQ(2u, opened_oat_file->GetOatDexFiles().size()); in TestZipFileInput() 747 opened_oat_file->GetOatDexFiles()[0]->OpenDexFile(&error_msg); in TestZipFileInput() 749 opened_oat_file->GetOatDexFiles()[1]->OpenDexFile(&error_msg); in TestZipFileInput() 795 ASSERT_EQ(2u, opened_oat_file->GetOatDexFiles().size()); in TestZipFileInput() 797 opened_oat_file->GetOatDexFiles()[0]->OpenDexFile(&error_msg); in TestZipFileInput() [all …]
|
/art/runtime/ |
D | oat_file_test.cc | 180 ASSERT_EQ(2u, odex_file->GetOatDexFiles().size()); in TEST_F()
|
D | oat_file.h | 278 const std::vector<const OatDexFile*>& GetOatDexFiles() const { in GetOatDexFiles() function
|
D | oat_file_manager.cc | 102 const std::vector<const OatDexFile*>& oat_dex_files = oat_file->GetOatDexFiles(); in FindOpenedOatFileFromDexLocation() 268 for (const OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) { in AddDexFilesFromOat()
|
D | oat_file.cc | 1450 const std::vector<const OatDexFile*>& oat_dex_files = GetOatDexFiles(); in IsClassVerifiedInVdex() 2243 for (const OatDexFile* odf : GetOatDexFiles()) { in InitializeRelocations()
|
/art/dex2oat/ |
D | dex2oat_test.cc | 534 for (const OatDexFile* oat_dex_file : odex_file->GetOatDexFiles()) { in CheckResult() 806 for (const OatDexFile* oat_dex_file : odex_file->GetOatDexFiles()) { in CheckResult() 958 ASSERT_GE(odex_file->GetOatDexFiles().size(), 1u); in CheckResult() 961 for (const OatDexFile* oat_dex_file : odex_file->GetOatDexFiles()) { in CheckResult() 1409 std::vector<const OatDexFile*> oat_dex_files = odex_file->GetOatDexFiles(); in TEST_F() 1518 std::vector<const OatDexFile*> oat_dex_files = odex_file->GetOatDexFiles(); in TEST_F() 1778 std::vector<const OatDexFile*> oat_dex_files = odex_file->GetOatDexFiles(); in TEST_F() 1916 std::vector<const OatDexFile*> oat_dex_files = odex_file->GetOatDexFiles(); in TEST_F()
|
/art/runtime/gc/space/ |
D | image_space.cc | 2153 for (const OatDexFile* oat_dex_file : oat_file.GetOatDexFiles()) { in ValidateOatFile() 2290 size_t num_dex_files = space->oat_file_non_owned_->GetOatDexFiles().size(); in GetBootClassPathChecksums() 2293 CHECK_LE(space->oat_file_non_owned_->GetOatDexFiles().size(), boot_class_path.size() - pos); in GetBootClassPathChecksums() 2295 CHECK_EQ(space->oat_file_non_owned_->GetOatDexFiles()[i]->GetDexFileLocation(), in GetBootClassPathChecksums()
|
/art/oatdump/ |
D | oatdump.cc | 237 std::vector<const OatDexFile*> oat_dex_files = oat_file_->GetOatDexFiles(); in Walk() 387 oat_dex_files_(oat_file.GetOatDexFiles()), in OatDumper() 1910 for (const OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) { in Dump() 2820 for (const OatDexFile* odf : oat_file_ptr->GetOatDexFiles()) { in InstallOatFile()
|