/aosp_15_r20/art/runtime/oat/ |
H A D | oat_file_assistant_context.cc | 57 .boot_class_path = runtime->GetBootClassPath(), in OatFileAssistantContext() 82 const std::vector<const DexFile*>& bcp_dex_files = runtime->GetClassLinker()->GetBootClassPath();
|
H A D | oat_file-inl.h | 104 Runtime::Current()->GetClassLinker()->GetBootClassPath()); in FindBcpMappingInfo()
|
H A D | oat_file.cc | 1064 if (linker != nullptr && UNLIKELY(number_of_bcp_dexfiles > linker->GetBootClassPath().size())) { in Setup() 1077 ? linker->GetBootClassPath()[i]->GetLocation() in Setup()
|
H A D | oat_file_assistant_test.cc | 195 .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 D | oat_writer_test.cc | 423 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 D | image_test.h | 169 std::vector<const DexFile*> class_path = class_linker->GetBootClassPath(); in DoCompile()
|
H A D | oat_writer.cc | 803 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 D | runtime.cc | 1765 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 D | common_runtime_test.cc | 141 boot_class_path_ = class_linker_->GetBootClassPath(); in SetUp()
|
H A D | runtime.h | 325 const std::vector<std::string>& GetBootClassPath() const { in GetBootClassPath() function
|
H A D | class_linker.h | 500 const std::vector<const DexFile*>& GetBootClassPath() { in GetBootClassPath() function
|
/aosp_15_r20/art/compiler/optimizing/ |
H A D | stack_map_stream.cc | 242 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 D | code_generator_x86_64.cc | 328 ContainsElement(Runtime::Current()->GetClassLinker()->GetBootClassPath(), in EmitNativeCode() 1331 ContainsElement(Runtime::Current()->GetClassLinker()->GetBootClassPath(), in RecordMethodBssEntryPatch()
|
/aosp_15_r20/art/runtime/jit/ |
H A D | profile_saver.cc | 677 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 D | jit.cc | 807 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 D | java_lang_VMClassLoader.cc | 138 const std::vector<const DexFile*>& path = class_linker->GetBootClassPath(); in VMClassLoader_getBootClassPathEntries()
|
H A D | dalvik_system_VMRuntime.cc | 209 std::string boot_class_path = android::base::Join(Runtime::Current()->GetBootClassPath(), ':'); in VMRuntime_bootClassPath()
|
/aosp_15_r20/art/runtime/entrypoints/ |
H A D | entrypoint_utils-inl.h | 64 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 D | artd.cc | 1653 .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 D | artd.h | 303 android::base::Result<const std::vector<std::string>*> GetBootClassPath() EXCLUDES(cache_mu_);
|
/aosp_15_r20/art/openjdkjvmti/ |
H A D | ti_class.cc | 931 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 D | dex2oat.cc | 1558 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 D | oatdump.cc | 570 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 D | unstarted_runtime.cc | 582 const std::vector<std::string>& boot_class_path = Runtime::Current()->GetBootClassPath(); in GetResourceAsStream()
|
/aosp_15_r20/art/runtime/gc/space/ |
H A D | image_space.cc | 3292 ArrayRef<const std::string>(runtime->GetBootClassPath()), in IsBootClassPathOnDisk()
|