Home
last modified time | relevance | path

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

/art/runtime/
Dparsed_options_test.cc38 std::string boot_class_path; in TEST_F() local
40 boot_class_path += "-Xbootclasspath:"; in TEST_F()
52 boot_class_path += class_path; in TEST_F()
55 options.push_back(std::make_pair(boot_class_path.c_str(), nullptr)); in TEST_F()
Dparsed_options.cc353 auto boot_class_path = static_cast<std::vector<std::unique_ptr<const DexFile>>*>( in ProcessSpecialOptions() local
357 runtime_options->Set(M::BootClassPathDexList, boot_class_path); in ProcessSpecialOptions()
591 auto&& boot_class_path = args.GetOrDefault(M::BootClassPath); in DoParse()
594 size_t boot_class_path_count = ParseStringList<':'>::Split(boot_class_path).Size(); in DoParse()
601 boot_class_path.size(), boot_class_path_string.c_str(), in DoParse()
Druntime.cc1328 const std::vector<const DexFile*>& boot_class_path = GetClassLinker()->GetBootClassPath(); in Init() local
1330 dex_locations.reserve(boot_class_path.size()); in Init()
1331 for (const DexFile* dex_file : boot_class_path) { in Init()
1357 std::vector<std::unique_ptr<const DexFile>> boot_class_path; in Init() local
1359 boot_class_path.swap(*runtime_options.GetOrDefault(Opt::BootClassPathDexList)); in Init()
1364 &boot_class_path); in Init()
1367 if (!class_linker_->InitWithoutImage(std::move(boot_class_path), &error_msg)) { in Init()
Doat_file_assistant.cc157 const auto& boot_class_path = class_linker->GetBootClassPath(); in IsInBootClassPath() local
158 for (size_t i = 0; i < boot_class_path.size(); i++) { in IsInBootClassPath()
159 if (boot_class_path[i]->GetLocation() == dex_location_) { in IsInBootClassPath()
Dclass_linker.h147 bool InitWithoutImage(std::vector<std::unique_ptr<const DexFile>> boot_class_path,
Dclass_linker.cc400 bool ClassLinker::InitWithoutImage(std::vector<std::unique_ptr<const DexFile>> boot_class_path, in InitWithoutImage() argument
568 if (boot_class_path.empty()) { in InitWithoutImage()
572 for (auto& dex_file : boot_class_path) { in InitWithoutImage()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc429 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); in PreloadDexCachesStatsTotal() local
430 for (size_t i = 0; i< boot_class_path.size(); i++) { in PreloadDexCachesStatsTotal()
431 const DexFile* dex_file = boot_class_path[i]; in PreloadDexCachesStatsTotal()
516 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); in VMRuntime_preloadDexCaches() local
517 for (size_t i = 0; i < boot_class_path.size(); i++) { in VMRuntime_preloadDexCaches()
518 const DexFile* dex_file = boot_class_path[i]; in VMRuntime_preloadDexCaches()
/art/runtime/gc/space/
Dimage_space.cc101 std::vector<std::string> boot_class_path; in GenerateImage() local
102 Split(boot_class_path_string, ':', &boot_class_path); in GenerateImage()
103 if (boot_class_path.empty()) { in GenerateImage()
122 for (size_t i = 0; i < boot_class_path.size(); i++) { in GenerateImage()
123 arg_vector.push_back(std::string("--dex-file=") + boot_class_path[i]); in GenerateImage()
/art/runtime/jdwp/
Djdwp_handler.cc295 std::vector<std::string> boot_class_path; in VM_ClassPaths() local
296 Split(Runtime::Current()->GetBootClassPathString(), ':', &boot_class_path); in VM_ClassPaths()
297 expandBufAdd4BE(pReply, boot_class_path.size()); in VM_ClassPaths()
298 for (const std::string& str : boot_class_path) { in VM_ClassPaths()
/art/dex2oat/
Ddex2oat.cc2566 std::string boot_class_path = "-Xbootclasspath:"; in PrepareRuntimeOptions() local
2567 boot_class_path += android::base::Join(dex_filenames_, ':'); in PrepareRuntimeOptions()
2568 raw_options.push_back(std::make_pair(boot_class_path, nullptr)); in PrepareRuntimeOptions()