Searched defs:boot_class_path (Results 1 - 8 of 8) sorted by relevance

/art/runtime/
H A Dparsed_options_test.cc35 std::string boot_class_path; local
36 boot_class_path += "-Xbootclasspath:";
37 boot_class_path += lib_core;
40 options.push_back(std::make_pair(boot_class_path.c_str(), null));
H A Druntime.cc808 std::vector<const DexFile*> boot_class_path; local
809 OpenDexFiles(dex_filenames, options->image_, boot_class_path);
810 class_linker_->InitWithoutImage(boot_class_path);
H A Dclass_linker.cc206 void ClassLinker::InitWithoutImage(const std::vector<const DexFile*>& boot_class_path) { argument
358 CHECK_NE(0U, boot_class_path.size());
359 for (size_t i = 0; i != boot_class_path.size(); ++i) {
360 const DexFile* dex_file = boot_class_path[i];
/art/runtime/gc/space/
H A Dimage_space.cc120 std::vector<std::string> boot_class_path; local
121 Split(boot_class_path_string, ':', boot_class_path);
122 if (boot_class_path.empty()) {
141 for (size_t i = 0; i < boot_class_path.size(); i++) {
142 arg_vector.push_back(std::string("--dex-file=") + boot_class_path[i]);
/art/runtime/native/
H A Ddalvik_system_DexFile.cc390 const std::vector<const DexFile*>& boot_class_path = class_linker->GetBootClassPath(); local
391 for (size_t i = 0; i < boot_class_path.size(); i++) {
392 if (boot_class_path[i]->GetLocation() == filename) {
H A Ddalvik_system_VMRuntime.cc364 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); local
365 for (size_t i = 0; i< boot_class_path.size(); i++) {
366 const DexFile* dex_file = boot_class_path[i];
381 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); local
382 for (size_t i = 0; i< boot_class_path.size(); i++) {
383 const DexFile* dex_file = boot_class_path[i];
443 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); local
444 for (size_t i = 0; i< boot_class_path.size(); i++) {
445 const DexFile* dex_file = boot_class_path[i];
/art/runtime/jdwp/
H A Djdwp_handler.cc338 std::vector<std::string> boot_class_path; local
339 Split(Runtime::Current()->GetBootClassPathString(), ':', boot_class_path);
340 expandBufAdd4BE(pReply, boot_class_path.size());
341 for (size_t i = 0; i < boot_class_path.size(); ++i) {
342 expandBufAddUtf8String(pReply, boot_class_path[i]);
/art/dex2oat/
H A Ddex2oat.cc1242 std::vector<const DexFile*> boot_class_path; local
1245 size_t failure_count = OpenDexFiles(dex_filenames, dex_locations, boot_class_path);
1250 runtime_options.push_back(std::make_pair("bootclasspath", &boot_class_path));

Completed in 512 milliseconds