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

/art/runtime/
H A Druntime_test.cc34 std::string boot_class_path; local
35 boot_class_path += "-Xbootclasspath:";
36 boot_class_path += lib_core;
39 options.push_back(std::make_pair(boot_class_path.c_str(), null));
H A Dclass_linker.cc173 ClassLinker* ClassLinker::CreateFromCompiler(const std::vector<const DexFile*>& boot_class_path, argument
175 CHECK_NE(boot_class_path.size(), 0U);
177 class_linker->InitFromCompiler(boot_class_path);
203 void ClassLinker::InitFromCompiler(const std::vector<const DexFile*>& boot_class_path) { argument
326 CHECK_NE(0U, boot_class_path.size());
327 for (size_t i = 0; i != boot_class_path.size(); ++i) {
328 const DexFile* dex_file = boot_class_path[i];
/art/runtime/gc/space/
H A Dimage_space.cc49 std::vector<std::string> boot_class_path; local
50 Split(boot_class_path_string, ':', boot_class_path);
51 if (boot_class_path.empty()) {
71 for (size_t i = 0; i < boot_class_path.size(); i++) {
72 arg_vector.push_back(std::string("--dex-file=") + boot_class_path[i]);
/art/runtime/native/
H A Ddalvik_system_DexFile.cc218 const std::vector<const DexFile*>& boot_class_path = class_linker->GetBootClassPath(); local
219 for (size_t i = 0; i < boot_class_path.size(); i++) {
220 if (boot_class_path[i]->GetLocation() == filename.c_str()) {
/art/runtime/jdwp/
H A Djdwp_handler.cc329 std::vector<std::string> boot_class_path; local
330 Split(Runtime::Current()->GetBootClassPathString(), ':', boot_class_path);
331 expandBufAdd4BE(pReply, boot_class_path.size());
332 for (size_t i = 0; i < boot_class_path.size(); ++i) {
333 expandBufAddUtf8String(pReply, boot_class_path[i]);
/art/dex2oat/
H A Ddex2oat.cc847 std::vector<const DexFile*> boot_class_path; local
849 size_t failure_count = OpenDexFiles(dex_filenames, dex_locations, boot_class_path);
854 options.push_back(std::make_pair("bootclasspath", &boot_class_path));

Completed in 138 milliseconds