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 353 auto boot_class_path = static_cast<std::vector<std::unique_ptr<const DexFile>>*>( local
357 runtime_options->Set(M::BootClassPathDexList, boot_class_path);
591 auto&& boot_class_path = args.GetOrDefault(M::BootClassPath); local
594 size_t boot_class_path_count = ParseStringList<':'>::Split(boot_class_path).Size();
601 boot_class_path.size(), boot_class_path_string.c_str(),
    [all...]
oat_file_assistant.cc 157 const auto& boot_class_path = class_linker->GetBootClassPath(); local
158 for (size_t i = 0; i < boot_class_path.size(); i++) {
159 if (boot_class_path[i]->GetLocation() == dex_location_) {
    [all...]
runtime.cc 1328 const std::vector<const DexFile*>& boot_class_path = GetClassLinker()->GetBootClassPath(); local
1357 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 429 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); local
430 for (size_t i = 0; i< boot_class_path.size(); i++) {
431 const DexFile* dex_file = boot_class_path[i];
516 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); local
517 for (size_t i = 0; i < boot_class_path.size(); i++) {
518 const DexFile* dex_file = boot_class_path[i];
  /art/runtime/gc/space/
image_space.cc 101 std::vector<std::string> boot_class_path; local
102 Split(boot_class_path_string, ':', &boot_class_path);
103 if (boot_class_path.empty()) {
122 for (size_t i = 0; i < boot_class_path.size(); i++) {
123 arg_vector.push_back(std::string("--dex-file=") + boot_class_path[i]);
    [all...]
  /art/dex2oat/
dex2oat.cc 2566 std::string boot_class_path = "-Xbootclasspath:"; local
    [all...]

Completed in 336 milliseconds