Home
last modified time | relevance | path

Searched refs:GetOatDexFiles (Results 1 – 10 of 10) sorted by relevance

/art/dex2oat/linker/
Doat_writer_test.cc273 ASSERT_EQ(expected_oat_dexfile_count, opened_oat_file->GetOatDexFiles().size()); in CheckOatWriteResult()
283 opened_oat_file->GetOatDexFiles()[i]->OpenDexFile(&error_msg); in CheckOatWriteResult()
285 ASSERT_EQ(opened_oat_file->GetOatDexFiles()[i]->GetDexFileLocationChecksum(), in CheckOatWriteResult()
781 ASSERT_EQ(2u, opened_oat_file->GetOatDexFiles().size()); in TestZipFileInput()
783 opened_oat_file->GetOatDexFiles()[0]->OpenDexFile(&error_msg); in TestZipFileInput()
785 opened_oat_file->GetOatDexFiles()[1]->OpenDexFile(&error_msg); in TestZipFileInput()
830 ASSERT_EQ(2u, opened_oat_file->GetOatDexFiles().size()); in TestZipFileInput()
832 opened_oat_file->GetOatDexFiles()[0]->OpenDexFile(&error_msg); in TestZipFileInput()
834 opened_oat_file->GetOatDexFiles()[1]->OpenDexFile(&error_msg); in TestZipFileInput()
/art/runtime/
Doat_file_test.cc77 ASSERT_EQ(2u, odex_file->GetOatDexFiles().size()); in TEST_F()
Dmodule_exclusion_test.cc182 for (const OatDexFile* oat_dex_file : odex_file->GetOatDexFiles()) { in TEST_F()
Doat_file.h310 const std::vector<const OatDexFile*>& GetOatDexFiles() const { in GetOatDexFiles() function
Doat_file_manager.cc107 const std::vector<const OatDexFile*>& oat_dex_files = oat_file->GetOatDexFiles(); in FindOpenedOatFileFromDexLocation()
Doat_file.cc2460 for (const OatDexFile* odf : GetOatDexFiles()) { in InitializeRelocations()
/art/dex2oat/
Ddex2oat_test.cc517 for (const OatDexFile* oat_dex_file : odex_file->GetOatDexFiles()) { in CheckResult()
797 for (const OatDexFile* oat_dex_file : odex_file->GetOatDexFiles()) { in CheckResult()
1221 std::vector<const OatDexFile*> oat_dex_files = odex_file->GetOatDexFiles(); in TEST_F()
1329 std::vector<const OatDexFile*> oat_dex_files = odex_file->GetOatDexFiles(); in TEST_F()
1608 std::vector<const OatDexFile*> oat_dex_files = odex_file->GetOatDexFiles(); in TEST_F()
1744 std::vector<const OatDexFile*> oat_dex_files = odex_file->GetOatDexFiles(); in TEST_F()
/art/runtime/gc/space/
Dimage_space.cc3272 for (const OatDexFile* oat_dex_file : oat_file.GetOatDexFiles()) { in ValidateOatFile()
3342 DCHECK_NE(main_space->oat_file_non_owned_->GetOatDexFiles().size(), 0u); in GetBootClassPathChecksums()
3343 DCHECK_EQ(main_space->oat_file_non_owned_->GetOatDexFiles()[0]->GetDexFileLocation(), in GetBootClassPathChecksums()
3357 size_t num_dex_files = oat_file->GetOatDexFiles().size(); in GetBootClassPathChecksums()
3360 CHECK_LE(oat_file->GetOatDexFiles().size(), boot_class_path.size() - bcp_pos); in GetBootClassPathChecksums()
3362 CHECK_EQ(oat_file->GetOatDexFiles()[i]->GetDexFileLocation(), in GetBootClassPathChecksums()
3567 size_t num_dex_files = oat_file->GetOatDexFiles().size(); in VerifyBootClassPathChecksums()
3569 const std::string main_location = oat_file->GetOatDexFiles()[0]->GetDexFileLocation(); in VerifyBootClassPathChecksums()
3575 oat_file->GetOatDexFiles()[i]->GetDexFileLocation().c_str())) { in VerifyBootClassPathChecksums()
/art/oatdump/
Doatdump.cc235 std::vector<const OatDexFile*> oat_dex_files = oat_file_->GetOatDexFiles(); in Walk()
385 oat_dex_files_(oat_file.GetOatDexFiles()), in OatDumper()
1807 for (const OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) { in Dump()
2477 for (const OatDexFile* odf : oat_file_ptr->GetOatDexFiles()) { in InstallOatFile()
/art/runtime/native/
Ddalvik_system_DexFile.cc826 const std::vector<const OatDexFile*>& oat_dex_files = oat_file->GetOatDexFiles(); in DexFile_getDexFileOutputPaths()