Home
last modified time | relevance | path

Searched refs:oat_dex_files (Results 1 – 5 of 5) sorted by relevance

/art/dex2oat/
Ddex2oat_test.cc1203 std::vector<std::unique_ptr<const DexFile>> oat_dex_files = in TEST_F() local
1206 for (size_t i = 0; i < oat_dex_files.size(); i++) { in TEST_F()
1210 expected_classpath_key += oat_dex_files[i]->GetLocation() + "*" + in TEST_F()
1211 std::to_string(oat_dex_files[i]->GetLocationChecksum()); in TEST_F()
1440 std::vector<const OatDexFile*> oat_dex_files = odex_file->GetOatDexFiles(); in TEST_F() local
1441 ASSERT_EQ(oat_dex_files.size(), 1u); in TEST_F()
1443 for (const OatDexFile* oat_dex : oat_dex_files) { in TEST_F()
1548 std::vector<const OatDexFile*> oat_dex_files = odex_file->GetOatDexFiles(); in TEST_F() local
1549 ASSERT_GT(oat_dex_files.size(), 1u); in TEST_F()
1552 for (const OatDexFile* oat_dex : oat_dex_files) { in TEST_F()
[all …]
/art/runtime/
Dclass_loader_context.cc477 std::vector<std::unique_ptr<const DexFile>> oat_dex_files; in OpenDexFiles() local
479 OatFileAssistant::LoadDexFiles(*oat_file, location, &oat_dex_files)) { in OpenDexFiles()
482 std::make_move_iterator(oat_dex_files.begin()), in OpenDexFiles()
483 std::make_move_iterator(oat_dex_files.end())); in OpenDexFiles()
Doat_file.cc1552 const std::vector<const OatDexFile*>& oat_dex_files = GetOatDexFiles(); in IsClassVerifiedInVdex() local
1553 auto oat_dex_file_it = std::find(oat_dex_files.begin(), oat_dex_files.end(), &oat_dex_file); in IsClassVerifiedInVdex()
1554 DCHECK(oat_dex_file_it != oat_dex_files.end()); in IsClassVerifiedInVdex()
1555 size_t dex_index = oat_dex_file_it - oat_dex_files.begin(); in IsClassVerifiedInVdex()
Doat_file_manager.cc102 const std::vector<const OatDexFile*>& oat_dex_files = oat_file->GetOatDexFiles(); in FindOpenedOatFileFromDexLocation() local
103 for (const OatDexFile* oat_dex_file : oat_dex_files) { in FindOpenedOatFileFromDexLocation()
/art/oatdump/
Doatdump.cc234 std::vector<const OatDexFile*> oat_dex_files = oat_file_->GetOatDexFiles(); in Walk() local
235 for (size_t i = 0; i < oat_dex_files.size(); i++) { in Walk()
236 const OatDexFile* oat_dex_file = oat_dex_files[i]; in Walk()