Searched refs:boot_class_path (Results 1 – 10 of 10) sorted by relevance
/art/runtime/ |
D | parsed_options_test.cc | 39 std::string boot_class_path; in TEST_F() local 41 boot_class_path += "-Xbootclasspath:"; in TEST_F() 53 boot_class_path += class_path; in TEST_F() 56 options.push_back(std::make_pair(boot_class_path.c_str(), nullptr)); in TEST_F()
|
D | parsed_options.cc | 330 auto boot_class_path = static_cast<std::vector<std::unique_ptr<const DexFile>>*>( in ProcessSpecialOptions() local 334 runtime_options->Set(M::BootClassPathDexList, boot_class_path); in ProcessSpecialOptions() 563 auto&& boot_class_path = args.GetOrDefault(M::BootClassPath); in DoParse() 566 size_t boot_class_path_count = ParseStringList<':'>::Split(boot_class_path).Size(); in DoParse() 573 boot_class_path.size(), boot_class_path_string.c_str(), in DoParse()
|
D | runtime.cc | 1176 const std::vector<const DexFile*>& boot_class_path = GetClassLinker()->GetBootClassPath(); in Init() local 1178 dex_locations.reserve(boot_class_path.size()); in Init() 1179 for (const DexFile* dex_file : boot_class_path) { in Init() 1204 std::vector<std::unique_ptr<const DexFile>> boot_class_path; in Init() local 1206 boot_class_path.swap(*runtime_options.GetOrDefault(Opt::BootClassPathDexList)); in Init() 1211 &boot_class_path); in Init() 1215 if (!class_linker_->InitWithoutImage(std::move(boot_class_path), &error_msg)) { in Init()
|
D | oat_file_assistant.cc | 110 const auto& boot_class_path = class_linker->GetBootClassPath(); in IsInBootClassPath() local 111 for (size_t i = 0; i < boot_class_path.size(); i++) { in IsInBootClassPath() 112 if (boot_class_path[i]->GetLocation() == dex_location_) { in IsInBootClassPath()
|
D | class_linker.h | 129 bool InitWithoutImage(std::vector<std::unique_ptr<const DexFile>> boot_class_path,
|
D | class_linker.cc | 351 bool ClassLinker::InitWithoutImage(std::vector<std::unique_ptr<const DexFile>> boot_class_path, in InitWithoutImage() argument 512 if (boot_class_path.empty()) { in InitWithoutImage() 516 for (auto& dex_file : boot_class_path) { in InitWithoutImage()
|
/art/runtime/native/ |
D | dalvik_system_VMRuntime.cc | 421 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); in PreloadDexCachesStatsTotal() local 422 for (size_t i = 0; i< boot_class_path.size(); i++) { in PreloadDexCachesStatsTotal() 423 const DexFile* dex_file = boot_class_path[i]; in PreloadDexCachesStatsTotal() 502 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); in VMRuntime_preloadDexCaches() local 503 for (size_t i = 0; i < boot_class_path.size(); i++) { in VMRuntime_preloadDexCaches() 504 const DexFile* dex_file = boot_class_path[i]; in VMRuntime_preloadDexCaches()
|
/art/runtime/gc/space/ |
D | image_space.cc | 84 std::vector<std::string> boot_class_path; in GenerateImage() local 85 Split(boot_class_path_string, ':', &boot_class_path); in GenerateImage() 86 if (boot_class_path.empty()) { in GenerateImage() 105 for (size_t i = 0; i < boot_class_path.size(); i++) { in GenerateImage() 106 arg_vector.push_back(std::string("--dex-file=") + boot_class_path[i]); in GenerateImage()
|
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 292 std::vector<std::string> boot_class_path; in VM_ClassPaths() local 293 Split(Runtime::Current()->GetBootClassPathString(), ':', &boot_class_path); in VM_ClassPaths() 294 expandBufAdd4BE(pReply, boot_class_path.size()); in VM_ClassPaths() 295 for (const std::string& str : boot_class_path) { in VM_ClassPaths()
|
/art/dex2oat/ |
D | dex2oat.cc | 2173 std::string boot_class_path = "-Xbootclasspath:"; in PrepareRuntimeOptions() local 2174 boot_class_path += Join(dex_filenames_, ':'); in PrepareRuntimeOptions() 2175 raw_options.push_back(std::make_pair(boot_class_path, nullptr)); in PrepareRuntimeOptions()
|