Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dimage_space.h127 const std::vector<std::string>& boot_class_path,
229 ArrayRef<const DexFile* const> boot_class_path);
238 ArrayRef<const std::string> boot_class_path,
250 ArrayRef<const std::string> boot_class_path,
Dimage_space.cc123 const std::vector<std::string>& boot_class_path = runtime->GetBootClassPath(); in GenerateImage() local
124 if (boot_class_path.empty()) { in GenerateImage()
159 DCHECK_EQ(boot_class_path.size(), boot_class_path_locations.size()); in GenerateImage()
160 for (size_t i = 0u; i < boot_class_path.size(); i++) { in GenerateImage()
161 arg_vector.push_back(std::string("--dex-file=") + boot_class_path[i]); in GenerateImage()
1648 ArrayRef<const std::string> boot_class_path, in BootImageLayout() argument
1651 boot_class_path_(boot_class_path), in BootImageLayout()
2201 std::string boot_class_path = Join(head_bcp, ':') + ':' + Join(extension_bcp, ':'); in CompileExtension() local
2208 args.push_back("-Xbootclasspath:" + boot_class_path); in CompileExtension()
2490 BootImageLoader(const std::vector<std::string>& boot_class_path, in BootImageLoader() argument
[all …]
/art/runtime/
Dparsed_options_test.cc38 std::string boot_class_path; in TEST_F() local
40 boot_class_path += "-Xbootclasspath:"; in TEST_F()
51 boot_class_path += class_path; in TEST_F()
56 options.push_back(std::make_pair(boot_class_path.c_str(), nullptr)); in TEST_F()
Dparsed_options.cc463 auto boot_class_path = static_cast<std::vector<std::unique_ptr<const DexFile>>*>( in ProcessSpecialOptions() local
467 runtime_options->Set(M::BootClassPathDexList, boot_class_path); in ProcessSpecialOptions()
682 const ParseStringList<':'>* boot_class_path = args.Get(M::BootClassPath); in DoParse() local
683 if (boot_class_path == nullptr || in DoParse()
684 boot_class_path_locations->Size() != boot_class_path->Size()) { in DoParse()
689 (boot_class_path != nullptr) ? boot_class_path->Size() : 0u, in DoParse()
690 (boot_class_path != nullptr) ? boot_class_path->Join().c_str() : "<nil>", in DoParse()
Doat_file_assistant.cc170 const auto& boot_class_path = class_linker->GetBootClassPath(); in IsInBootClassPath() local
171 for (size_t i = 0; i < boot_class_path.size(); i++) { in IsInBootClassPath()
172 if (boot_class_path[i]->GetLocation() == dex_location_) { in IsInBootClassPath()
Druntime.cc1606 std::vector<std::unique_ptr<const DexFile>> boot_class_path; in Init() local
1608 boot_class_path.swap(*runtime_options.GetOrDefault(Opt::BootClassPathDexList)); in Init()
1612 &boot_class_path); in Init()
1614 if (!class_linker_->InitWithoutImage(std::move(boot_class_path), &error_msg)) { in Init()
Dclass_linker.h155 bool InitWithoutImage(std::vector<std::unique_ptr<const DexFile>> boot_class_path,
Dclass_linker.cc737 bool ClassLinker::InitWithoutImage(std::vector<std::unique_ptr<const DexFile>> boot_class_path, in InitWithoutImage() argument
906 if (boot_class_path.empty()) { in InitWithoutImage()
910 for (auto& dex_file : boot_class_path) { in InitWithoutImage()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc227 std::string boot_class_path = android::base::Join(Runtime::Current()->GetBootClassPath(), ':'); in VMRuntime_bootClassPath() local
228 return env->NewStringUTF(DefaultToDot(boot_class_path)); in VMRuntime_bootClassPath()
506 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); in PreloadDexCachesStatsTotal() local
507 for (size_t i = 0; i< boot_class_path.size(); i++) { in PreloadDexCachesStatsTotal()
508 const DexFile* dex_file = boot_class_path[i]; in PreloadDexCachesStatsTotal()
593 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); in VMRuntime_preloadDexCaches() local
594 for (size_t i = 0; i < boot_class_path.size(); i++) { in VMRuntime_preloadDexCaches()
595 const DexFile* dex_file = boot_class_path[i]; in VMRuntime_preloadDexCaches()
/art/dex2oat/
Ddex2oat_image_test.cc415 std::vector<std::string> boot_class_path = libcore_dex_files; in TEST_F() local
423 return gc::space::ImageSpace::LoadBootImage(/*boot_class_path=*/ boot_class_path, in TEST_F()
498 CopyDexFiles(scratch_dir, &boot_class_path); in TEST_F()
Ddex2oat.cc2780 std::string boot_class_path = "-Xbootclasspath:"; in PrepareRuntimeOptions() local
2781 boot_class_path += android::base::Join(dex_filenames_, ':'); in PrepareRuntimeOptions()
2782 raw_options.push_back(std::make_pair(boot_class_path, nullptr)); in PrepareRuntimeOptions()
/art/runtime/jit/
Djit.cc891 const std::vector<const DexFile*>& boot_class_path = in Run() local
898 for (const DexFile* dex_file : boot_class_path) { in Run()
947 const std::vector<const DexFile*>& boot_class_path = in Run() local
957 self, boot_class_path, boot_profile, null_handle, /* add_to_queue= */ true); in Run()
960 self, boot_class_path, profile_file, null_handle, /* add_to_queue= */ true); in Run()
/art/runtime/interpreter/
Dunstarted_runtime.cc532 const std::vector<std::string>& boot_class_path = Runtime::Current()->GetBootClassPath(); in GetResourceAsStream() local
533 if (boot_class_path.empty()) { in GetResourceAsStream()
542 for (const std::string& jar_file : boot_class_path) { in GetResourceAsStream()
/art/runtime/gc/
Dheap.h200 const std::vector<std::string>& boot_class_path,
Dheap.cc219 const std::vector<std::string>& boot_class_path, in Heap() argument
418 if (space::ImageSpace::LoadBootImage(boot_class_path, in Heap()