HomeSort by relevance Sort by last modified time
    Searched defs:boot_class_path (Results 1 - 8 of 8) sorted by null

  /art/runtime/
parsed_options_test.cc 38 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));
parsed_options.cc 371 auto boot_class_path = static_cast<std::vector<std::unique_ptr<const DexFile>>*>( local
375 runtime_options->Set(M::BootClassPathDexList, boot_class_path);
609 auto&& boot_class_path = args.GetOrDefault(M::BootClassPath); local
612 size_t boot_class_path_count = ParseStringList<':'>::Split(boot_class_path).Size();
619 boot_class_path.size(), boot_class_path_string.c_str(),
    [all...]
oat_file_assistant.cc 175 const auto& boot_class_path = class_linker->GetBootClassPath(); local
176 for (size_t i = 0; i < boot_class_path.size(); i++) {
177 if (boot_class_path[i]->GetLocation() == dex_location_) {
    [all...]
runtime.cc 1455 const std::vector<const DexFile*>& boot_class_path = GetClassLinker()->GetBootClassPath(); local
1484 std::vector<std::unique_ptr<const DexFile>> boot_class_path; local
    [all...]
  /art/runtime/jdwp/
jdwp_handler.cc 295 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) {
    [all...]
  /art/runtime/native/
dalvik_system_VMRuntime.cc 470 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); local
471 for (size_t i = 0; i< boot_class_path.size(); i++) {
472 const DexFile* dex_file = boot_class_path[i];
557 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); local
558 for (size_t i = 0; i < boot_class_path.size(); i++) {
559 const DexFile* dex_file = boot_class_path[i];
  /art/runtime/gc/space/
image_space.cc 105 std::vector<std::string> boot_class_path; local
106 Split(boot_class_path_string, ':', &boot_class_path);
107 if (boot_class_path.empty()) {
126 for (size_t i = 0; i < boot_class_path.size(); i++) {
127 arg_vector.push_back(std::string("--dex-file=") + boot_class_path[i]);
    [all...]
  /art/dex2oat/
dex2oat.cc 2582 std::string boot_class_path = "-Xbootclasspath:"; local
    [all...]

Completed in 1123 milliseconds