Searched refs:boot_class_path (Results 1 - 9 of 9) 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.cc824 std::vector<const DexFile*> boot_class_path; local
825 OpenDexFiles(dex_filenames, options->image_, boot_class_path);
826 class_linker_->InitWithoutImage(boot_class_path);
H A Dclass_linker.h67 void InitWithoutImage(const std::vector<const DexFile*>& boot_class_path)
H A Dclass_linker.cc199 void ClassLinker::InitWithoutImage(const std::vector<const DexFile*>& boot_class_path) { argument
350 CHECK_NE(0U, boot_class_path.size());
351 for (const DexFile* dex_file : boot_class_path) {
/art/runtime/native/
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];
H A Ddalvik_system_DexFile.cc400 const std::vector<const DexFile*>& boot_class_path = class_linker->GetBootClassPath(); local
401 for (size_t i = 0; i < boot_class_path.size(); i++) {
402 if (boot_class_path[i]->GetLocation() == filename) {
/art/runtime/gc/space/
H A Dimage_space.cc145 std::vector<std::string> boot_class_path; local
146 Split(boot_class_path_string, ':', boot_class_path);
147 if (boot_class_path.empty()) {
166 for (size_t i = 0; i < boot_class_path.size(); i++) {
167 arg_vector.push_back(std::string("--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.cc1332 std::vector<const DexFile*> boot_class_path; local
1335 size_t failure_count = OpenDexFiles(dex_filenames, dex_locations, boot_class_path);
1341 runtime_options.push_back(std::make_pair("bootclasspath", &boot_class_path));

Completed in 5796 milliseconds