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

/art/runtime/
H A Dparsed_options_test.cc39 std::string boot_class_path; local
40 boot_class_path += "-Xbootclasspath:";
41 boot_class_path += lib_core;
44 options.push_back(std::make_pair(boot_class_path.c_str(), nullptr));
H A Dparsed_options.cc298 auto boot_class_path local
302 runtime_options->Set(M::BootClassPathDexList, boot_class_path);
516 auto&& boot_class_path = args.GetOrDefault(M::BootClassPath); local
519 size_t boot_class_path_count = ParseStringList<':'>::Split(boot_class_path).Size();
526 boot_class_path.size(), boot_class_path_string.c_str(),
H A Druntime.cc995 const std::vector<const DexFile*>& boot_class_path = GetClassLinker()->GetBootClassPath(); local
997 dex_locations.reserve(boot_class_path.size());
998 for (const DexFile* dex_file : boot_class_path) {
1015 std::vector<std::unique_ptr<const DexFile>> boot_class_path; local
1019 &boot_class_path);
1021 class_linker_->InitWithoutImage(std::move(boot_class_path));
H A Doat_file_assistant.cc111 const auto& boot_class_path = class_linker->GetBootClassPath(); local
112 for (size_t i = 0; i < boot_class_path.size(); i++) {
113 if (boot_class_path[i]->GetLocation() == std::string(dex_location_)) {
H A Dclass_linker.h112 void InitWithoutImage(std::vector<std::unique_ptr<const DexFile>> boot_class_path)
H A Dclass_linker.cc288 void ClassLinker::InitWithoutImage(std::vector<std::unique_ptr<const DexFile>> boot_class_path) { argument
434 CHECK_NE(0U, boot_class_path.size());
435 for (auto& dex_file : boot_class_path) {
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc414 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); local
415 for (size_t i = 0; i< boot_class_path.size(); i++) {
416 const DexFile* dex_file = boot_class_path[i];
431 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); local
432 for (size_t i = 0; i< boot_class_path.size(); i++) {
433 const DexFile* dex_file = boot_class_path[i];
492 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); local
493 for (size_t i = 0; i< boot_class_path.size(); i++) {
494 const DexFile* dex_file = boot_class_path[i];
/art/runtime/gc/space/
H A Dimage_space.cc178 std::vector<std::string> boot_class_path; local
179 Split(boot_class_path_string, ':', &boot_class_path);
180 if (boot_class_path.empty()) {
199 for (size_t i = 0; i < boot_class_path.size(); i++) {
200 arg_vector.push_back(std::string("--dex-file=") + boot_class_path[i]);
/art/runtime/jdwp/
H A Djdwp_handler.cc292 std::vector<std::string> boot_class_path; local
293 Split(Runtime::Current()->GetBootClassPathString(), ':', &boot_class_path);
294 expandBufAdd4BE(pReply, boot_class_path.size());
295 for (const std::string& str : boot_class_path) {
/art/dex2oat/
H A Ddex2oat.cc1157 std::string boot_class_path = "-Xbootclasspath:"; local
1158 boot_class_path += Join(dex_filenames_, ':');
1159 runtime_options.push_back(std::make_pair(boot_class_path, nullptr));

Completed in 3653 milliseconds