Home
last modified time | relevance | path

Searched refs:GetBootClassPath (Results 1 – 25 of 29) sorted by relevance

12

/aosp_15_r20/art/runtime/oat/
H A Doat_file_assistant_context.cc57 .boot_class_path = runtime->GetBootClassPath(), in OatFileAssistantContext()
82 const std::vector<const DexFile*>& bcp_dex_files = runtime->GetClassLinker()->GetBootClassPath();
H A Doat_file-inl.h104 Runtime::Current()->GetClassLinker()->GetBootClassPath()); in FindBcpMappingInfo()
H A Doat_file.cc1064 if (linker != nullptr && UNLIKELY(number_of_bcp_dexfiles > linker->GetBootClassPath().size())) { in Setup()
1077 ? linker->GetBootClassPath()[i]->GetLocation() in Setup()
H A Doat_file_assistant_test.cc195 .boot_class_path = runtime_->GetBootClassPath(), in CreateOatFileAssistantContext()
2660 ArrayRef<const DexFile* const>(runtime_->GetClassLinker()->GetBootClassPath())); in TEST_P()
/aosp_15_r20/art/dex2oat/linker/
H A Doat_writer_test.cc423 CompileAll(class_loader, class_linker->GetBootClassPath(), &timings2); in TEST_F()
431 class_linker->GetBootClassPath(), in TEST_F()
437 CompileAll(class_loader, class_linker->GetBootClassPath(), &timings); in TEST_F()
448 ASSERT_EQ(class_linker->GetBootClassPath().size(), oat_header.GetDexFileCount()); // core in TEST_F()
H A Dimage_test.h169 std::vector<const DexFile*> class_path = class_linker->GetBootClassPath(); in DoCompile()
H A Doat_writer.cc803 ContainsElement(Runtime::Current()->GetClassLinker()->GetBootClassPath(), ref.dex_file)); in AddBssReference()
2118 Runtime::Current()->GetClassLinker()->GetBootClassPath()); in InitIndexBssMappings()
3066 Runtime::Current()->GetClassLinker()->GetBootClassPath()); in WriteIndexBssMappings()
/aosp_15_r20/art/runtime/
H A Druntime.cc1765 GetBootClassPath(), in Init()
1983 if (total_components != GetBootClassPath().size()) { in Init()
1985 CHECK_LT(total_components, GetBootClassPath().size()); in Init()
1987 DCHECK_LT(start, GetBootClassPath().size()); in Init()
1995 OpenBootDexFiles(ArrayRef<const std::string>(GetBootClassPath()).SubArray(start), in Init()
2014 OpenBootDexFiles(ArrayRef<const std::string>(GetBootClassPath()), in Init()
2037 ArrayRef<const DexFile* const> bcp_dex_files(GetClassLinker()->GetBootClassPath()); in Init()
H A Dcommon_runtime_test.cc141 boot_class_path_ = class_linker_->GetBootClassPath(); in SetUp()
H A Druntime.h325 const std::vector<std::string>& GetBootClassPath() const { in GetBootClassPath() function
H A Dclass_linker.h500 const std::vector<const DexFile*>& GetBootClassPath() { in GetBootClassPath() function
/aosp_15_r20/art/compiler/optimizing/
H A Dstack_map_stream.cc242 const std::vector<const DexFile*>& boot_class_path = class_linker->GetBootClassPath(); in BeginInlineInfoEntry()
288 const std::vector<const DexFile*>& boot_class_path = class_linker->GetBootClassPath(); in BeginInlineInfoEntry()
H A Dcode_generator_x86_64.cc328 ContainsElement(Runtime::Current()->GetClassLinker()->GetBootClassPath(), in EmitNativeCode()
1331 ContainsElement(Runtime::Current()->GetClassLinker()->GetBootClassPath(), in RecordMethodBssEntryPatch()
/aosp_15_r20/art/runtime/jit/
H A Dprofile_saver.cc677 DCHECK(!class_linker->GetBootClassPath().empty()); in UpdateProfile()
678 const DexFile* dex_file = class_linker->GetBootClassPath().front(); in UpdateProfile()
1014 for (const DexFile* dex_file : runtime->GetClassLinker()->GetBootClassPath()) { in Start()
H A Djit.cc807 runtime->GetClassLinker()->GetBootClassPath(); in Run()
856 runtime->GetClassLinker()->GetBootClassPath(); in Run()
1102 for (const DexFile* dex_file : runtime->GetClassLinker()->GetBootClassPath()) { in CreateThreadPool()
/aosp_15_r20/art/runtime/native/
H A Djava_lang_VMClassLoader.cc138 const std::vector<const DexFile*>& path = class_linker->GetBootClassPath(); in VMClassLoader_getBootClassPathEntries()
H A Ddalvik_system_VMRuntime.cc209 std::string boot_class_path = android::base::Join(Runtime::Current()->GetBootClassPath(), ':'); in VMRuntime_bootClassPath()
/aosp_15_r20/art/runtime/entrypoints/
H A Dentrypoint_utils-inl.h64 for (const DexFile* df : class_linker->GetBootClassPath()) { in GetResolvedMethodErrorString()
143 ArrayRef<const DexFile* const> bcp_dex_files(class_linker->GetBootClassPath()); in GetResolvedMethod()
/aosp_15_r20/art/artd/
H A Dartd.cc1653 .boot_class_path = *OR_RETURN(GetBootClassPath()), in GetOatFileAssistantContext()
1654 .boot_class_path_locations = *OR_RETURN(GetBootClassPath()), in GetOatFileAssistantContext()
1691 Result<const std::vector<std::string>*> Artd::GetBootClassPath() { in GetBootClassPath() function in art::artd::Artd
H A Dartd.h303 android::base::Result<const std::vector<std::string>*> GetBootClassPath() EXCLUDES(cache_mu_);
/aosp_15_r20/art/openjdkjvmti/
H A Dti_class.cc931 dex_files = &art::Runtime::Current()->GetClassLinker()->GetBootClassPath(); in GetClassLoaderClassDescriptors()
939 dex_files = &art::Runtime::Current()->GetClassLinker()->GetBootClassPath(); in GetClassLoaderClassDescriptors()
/aosp_15_r20/art/dex2oat/
H A Ddex2oat.cc1558 ArrayRef<const DexFile* const> bcp_dex_files(runtime_->GetClassLinker()->GetBootClassPath()); in Setup()
1873 &class_linker->GetBootClassPath(), in Compile()
/aosp_15_r20/art/oatdump/
H A Doatdump.cc570 ArrayRef<const DexFile* const> bcp_dex_files(linker->GetBootClassPath()); in Dump()
2742 class_path = runtime->GetClassLinker()->GetBootClassPath(); in Dump()
/aosp_15_r20/art/runtime/interpreter/
H A Dunstarted_runtime.cc582 const std::vector<std::string>& boot_class_path = Runtime::Current()->GetBootClassPath(); in GetResourceAsStream()
/aosp_15_r20/art/runtime/gc/space/
H A Dimage_space.cc3292 ArrayRef<const std::string>(runtime->GetBootClassPath()), in IsBootClassPathOnDisk()

12