Searched refs:boot_class_path (Results 1 – 10 of 10) sorted by relevance
/art/runtime/ |
D | parsed_options_test.cc | 38 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()
|
D | parsed_options.cc | 371 auto boot_class_path = static_cast<std::vector<std::unique_ptr<const DexFile>>*>( in ProcessSpecialOptions() local 375 runtime_options->Set(M::BootClassPathDexList, boot_class_path); in ProcessSpecialOptions() 609 auto&& boot_class_path = args.GetOrDefault(M::BootClassPath); in DoParse() 612 size_t boot_class_path_count = ParseStringList<':'>::Split(boot_class_path).Size(); in DoParse() 619 boot_class_path.size(), boot_class_path_string.c_str(), in DoParse()
|
D | runtime.cc | 1455 const std::vector<const DexFile*>& boot_class_path = GetClassLinker()->GetBootClassPath(); in Init() local 1457 dex_locations.reserve(boot_class_path.size()); in Init() 1458 for (const DexFile* dex_file : boot_class_path) { in Init() 1484 std::vector<std::unique_ptr<const DexFile>> boot_class_path; in Init() local 1486 boot_class_path.swap(*runtime_options.GetOrDefault(Opt::BootClassPathDexList)); in Init() 1491 &boot_class_path); in Init() 1494 if (!class_linker_->InitWithoutImage(std::move(boot_class_path), &error_msg)) { in Init()
|
D | oat_file_assistant.cc | 175 const auto& boot_class_path = class_linker->GetBootClassPath(); in IsInBootClassPath() local 176 for (size_t i = 0; i < boot_class_path.size(); i++) { in IsInBootClassPath() 177 if (boot_class_path[i]->GetLocation() == dex_location_) { in IsInBootClassPath()
|
D | class_linker.h | 161 bool InitWithoutImage(std::vector<std::unique_ptr<const DexFile>> boot_class_path,
|
D | class_linker.cc | 411 bool ClassLinker::InitWithoutImage(std::vector<std::unique_ptr<const DexFile>> boot_class_path, in InitWithoutImage() argument 590 if (boot_class_path.empty()) { in InitWithoutImage() 594 for (auto& dex_file : boot_class_path) { in InitWithoutImage()
|
/art/runtime/native/ |
D | dalvik_system_VMRuntime.cc | 470 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); in PreloadDexCachesStatsTotal() local 471 for (size_t i = 0; i< boot_class_path.size(); i++) { in PreloadDexCachesStatsTotal() 472 const DexFile* dex_file = boot_class_path[i]; in PreloadDexCachesStatsTotal() 557 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); in VMRuntime_preloadDexCaches() local 558 for (size_t i = 0; i < boot_class_path.size(); i++) { in VMRuntime_preloadDexCaches() 559 const DexFile* dex_file = boot_class_path[i]; in VMRuntime_preloadDexCaches()
|
/art/runtime/gc/space/ |
D | image_space.cc | 105 std::vector<std::string> boot_class_path; in GenerateImage() local 106 Split(boot_class_path_string, ':', &boot_class_path); in GenerateImage() 107 if (boot_class_path.empty()) { in GenerateImage() 126 for (size_t i = 0; i < boot_class_path.size(); i++) { in GenerateImage() 127 arg_vector.push_back(std::string("--dex-file=") + boot_class_path[i]); in GenerateImage()
|
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 295 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/ |
D | dex2oat.cc | 2582 std::string boot_class_path = "-Xbootclasspath:"; in PrepareRuntimeOptions() local 2583 boot_class_path += android::base::Join(dex_filenames_, ':'); in PrepareRuntimeOptions() 2584 raw_options.push_back(std::make_pair(boot_class_path, nullptr)); in PrepareRuntimeOptions()
|