Home
last modified time | relevance | path

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

/art/runtime/oat/
Doat_file_assistant_context.cc81 const std::vector<const DexFile*>& bcp_dex_files = runtime->GetClassLinker()->GetBootClassPath(); local
82 for (size_t i = 0; i < bcp_dex_files.size();) {
83 uint32_t checksum = DexFileLoader::GetMultiDexChecksum(bcp_dex_files, &i);
/art/dex2oat/
Ddex2oat.cc1554 ArrayRef<const DexFile* const> bcp_dex_files(runtime_->GetClassLinker()->GetBootClassPath()); in Setup() local
1557 if ((IsBootImage() && bcp_dex_files.size() != dex_files.size()) || in Setup()
1558 (IsBootImageExtension() && bcp_dex_files.size() <= dex_files.size())) { in Setup()
1560 << bcp_dex_files.size() << (IsBootImage() ? " != " : " <= ") << dex_files.size(); in Setup()
1563 if (!std::equal(dex_files.begin(), dex_files.end(), bcp_dex_files.end() - dex_files.size())) { in Setup()
1568 size_t bcp_df_end = bcp_dex_files.size(); in Setup()
1570 if (bcp_df_pos == bcp_df_end || bcp_dex_files[bcp_df_pos]->GetLocation() != bcp_location) { in Setup()
1574 CHECK(!DexFileLoader::IsMultiDexLocation(bcp_dex_files[bcp_df_pos]->GetLocation())); in Setup()
1577 DexFileLoader::IsMultiDexLocation(bcp_dex_files[bcp_df_pos]->GetLocation())) { in Setup()
1583 << bcp_dex_files[bcp_df_pos]->GetLocation(); in Setup()
[all …]
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h143 ArrayRef<const DexFile* const> bcp_dex_files(class_linker->GetBootClassPath()); in GetResolvedMethod()
144 DCHECK_LT(dex_file_index, bcp_dex_files.size()) in GetResolvedMethod()
148 const DexFile* dex_file = bcp_dex_files[dex_file_index]; in GetResolvedMethod()
/art/oatdump/
Doatdump.cc562 ArrayRef<const DexFile* const> bcp_dex_files(linker->GetBootClassPath()); in Dump() local
567 CHECK_LE(oat_file_.bcp_bss_info_.size(), bcp_dex_files.size()); in Dump()
569 const DexFile* const dex_file = bcp_dex_files[i]; in Dump()
/art/runtime/
Druntime.cc2039 ArrayRef<const DexFile* const> bcp_dex_files(GetClassLinker()->GetBootClassPath()); in Init() local
2041 bcp_dex_files); in Init()