Home
last modified time | relevance | path

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

/art/dex2oat/
Ddex2oat_test.cc1165 std::vector<std::unique_ptr<const DexFile>> oat_dex_files = in TEST_F() local
1168 for (size_t i = 0; i < oat_dex_files.size(); i++) { in TEST_F()
1172 expected_classpath_key += oat_dex_files[i]->GetLocation() + "*" + in TEST_F()
1173 std::to_string(oat_dex_files[i]->GetLocationChecksum()); in TEST_F()
1409 std::vector<const OatDexFile*> oat_dex_files = odex_file->GetOatDexFiles(); in TEST_F() local
1410 ASSERT_EQ(oat_dex_files.size(), 1u); in TEST_F()
1412 for (const OatDexFile* oat_dex : oat_dex_files) { in TEST_F()
1518 std::vector<const OatDexFile*> oat_dex_files = odex_file->GetOatDexFiles(); in TEST_F() local
1519 ASSERT_GT(oat_dex_files.size(), 1u); in TEST_F()
1522 for (const OatDexFile* oat_dex : oat_dex_files) { in TEST_F()
[all …]
/art/runtime/
Dclass_loader_context.cc471 std::vector<std::unique_ptr<const DexFile>> oat_dex_files; in OpenDexFiles() local
473 OatFileAssistant::LoadDexFiles(*oat_file, location, &oat_dex_files)) { in OpenDexFiles()
476 std::make_move_iterator(oat_dex_files.begin()), in OpenDexFiles()
477 std::make_move_iterator(oat_dex_files.end())); in OpenDexFiles()
Doat_file.cc1450 const std::vector<const OatDexFile*>& oat_dex_files = GetOatDexFiles(); in IsClassVerifiedInVdex() local
1451 auto oat_dex_file_it = std::find(oat_dex_files.begin(), oat_dex_files.end(), &oat_dex_file); in IsClassVerifiedInVdex()
1452 DCHECK(oat_dex_file_it != oat_dex_files.end()); in IsClassVerifiedInVdex()
1453 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.cc237 std::vector<const OatDexFile*> oat_dex_files = oat_file_->GetOatDexFiles(); in Walk() local
238 for (size_t i = 0; i < oat_dex_files.size(); i++) { in Walk()
239 const OatDexFile* oat_dex_file = oat_dex_files[i]; in Walk()