Home
last modified time | relevance | path

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

/art/dex2oat/
Ddex2oat.cc1777 ArrayRef<const DexFile* const> bcp_dex_files(runtime_->GetClassLinker()->GetBootClassPath()); in Setup() local
1780 if ((IsBootImage() && bcp_dex_files.size() != dex_files.size()) || in Setup()
1781 (IsBootImageExtension() && bcp_dex_files.size() <= dex_files.size())) { in Setup()
1783 << bcp_dex_files.size() << (IsBootImage() ? " != " : " <= ") << dex_files.size(); in Setup()
1786 if (!std::equal(dex_files.begin(), dex_files.end(), bcp_dex_files.end() - dex_files.size())) { in Setup()
1791 size_t bcp_df_end = bcp_dex_files.size(); in Setup()
1793 if (bcp_df_pos == bcp_df_end || bcp_dex_files[bcp_df_pos]->GetLocation() != bcp_location) { in Setup()
1797 CHECK(!DexFileLoader::IsMultiDexLocation(bcp_dex_files[bcp_df_pos]->GetLocation().c_str())); in Setup()
1800 DexFileLoader::IsMultiDexLocation(bcp_dex_files[bcp_df_pos]->GetLocation().c_str())) { in Setup()
1806 << bcp_dex_files[bcp_df_pos]->GetLocation(); in Setup()
[all …]