Home
last modified time | relevance | path

Searched refs:bcp_dex_files (Results 1 – 2 of 2) sorted by relevance

/art/dex2oat/
Ddex2oat.cc1519 ArrayRef<const DexFile* const> bcp_dex_files(runtime_->GetClassLinker()->GetBootClassPath()); in Setup() local
1522 if ((IsBootImage() && bcp_dex_files.size() != dex_files.size()) || in Setup()
1523 (IsBootImageExtension() && bcp_dex_files.size() <= dex_files.size())) { in Setup()
1525 << bcp_dex_files.size() << (IsBootImage() ? " != " : " <= ") << dex_files.size(); in Setup()
1528 if (!std::equal(dex_files.begin(), dex_files.end(), bcp_dex_files.end() - dex_files.size())) { in Setup()
1533 size_t bcp_df_end = bcp_dex_files.size(); in Setup()
1535 if (bcp_df_pos == bcp_df_end || bcp_dex_files[bcp_df_pos]->GetLocation() != bcp_location) { in Setup()
1539 CHECK(!DexFileLoader::IsMultiDexLocation(bcp_dex_files[bcp_df_pos]->GetLocation().c_str())); in Setup()
1542 DexFileLoader::IsMultiDexLocation(bcp_dex_files[bcp_df_pos]->GetLocation().c_str())) { in Setup()
1548 << bcp_dex_files[bcp_df_pos]->GetLocation(); in Setup()
[all …]
/art/runtime/
Druntime.cc1820 ArrayRef<const DexFile* const> bcp_dex_files(GetClassLinker()->GetBootClassPath()); in Init() local
1822 bcp_dex_files); in Init()