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

/art/runtime/
H A Dparsed_options_test.cc38 std::string boot_class_path; local
40 boot_class_path += "-Xbootclasspath:";
52 boot_class_path += class_path;
55 options.push_back(std::make_pair(boot_class_path.c_str(), nullptr));
H A Dparsed_options.cc338 auto boot_class_path = static_cast<std::vector<std::unique_ptr<const DexFile>>*>( local
342 runtime_options->Set(M::BootClassPathDexList, boot_class_path);
574 auto&& boot_class_path = args.GetOrDefault(M::BootClassPath); local
577 size_t boot_class_path_count = ParseStringList<':'>::Split(boot_class_path).Size();
584 boot_class_path.size(), boot_class_path_string.c_str(),
H A Doat_file_assistant.cc155 const auto& boot_class_path = class_linker->GetBootClassPath(); local
156 for (size_t i = 0; i < boot_class_path.size(); i++) {
157 if (boot_class_path[i]->GetLocation() == dex_location_) {
H A Druntime.cc1253 const std::vector<const DexFile*>& boot_class_path = GetClassLinker()->GetBootClassPath(); local
1255 dex_locations.reserve(boot_class_path.size());
1256 for (const DexFile* dex_file : boot_class_path) {
1282 std::vector<std::unique_ptr<const DexFile>> boot_class_path; local
1284 boot_class_path.swap(*runtime_options.GetOrDefault(Opt::BootClassPathDexList));
1289 &boot_class_path);
1292 if (!class_linker_->InitWithoutImage(std::move(boot_class_path), &error_msg)) {
H A Dclass_linker.h143 bool InitWithoutImage(std::vector<std::unique_ptr<const DexFile>> boot_class_path,
H A Dclass_linker.cc391 bool ClassLinker::InitWithoutImage(std::vector<std::unique_ptr<const DexFile>> boot_class_path, argument
559 if (boot_class_path.empty()) {
563 for (auto& dex_file : boot_class_path) {
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc436 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); local
437 for (size_t i = 0; i< boot_class_path.size(); i++) {
438 const DexFile* dex_file = boot_class_path[i];
519 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); local
520 for (size_t i = 0; i < boot_class_path.size(); i++) {
521 const DexFile* dex_file = boot_class_path[i];
/art/runtime/gc/space/
H A Dimage_space.cc99 std::vector<std::string> boot_class_path; local
100 Split(boot_class_path_string, ':', &boot_class_path);
101 if (boot_class_path.empty()) {
120 for (size_t i = 0; i < boot_class_path.size(); i++) {
121 arg_vector.push_back(std::string("--dex-file=") + boot_class_path[i]);
/art/runtime/jdwp/
H A Djdwp_handler.cc295 std::vector<std::string> boot_class_path; local
296 Split(Runtime::Current()->GetBootClassPathString(), ':', &boot_class_path);
297 expandBufAdd4BE(pReply, boot_class_path.size());
298 for (const std::string& str : boot_class_path) {
/art/dex2oat/
H A Ddex2oat.cc2411 std::string boot_class_path = "-Xbootclasspath:"; local
2412 boot_class_path += android::base::Join(dex_filenames_, ':');
2413 raw_options.push_back(std::make_pair(boot_class_path, nullptr));

Completed in 197 milliseconds