Home
last modified time | relevance | path

Searched refs:boot_class_path_ (Results 1 – 8 of 8) sorted by relevance

/art/runtime/gc/space/
Dimage_space.cc1429 boot_class_path_(boot_class_path), in BootImageLayout()
1480 ArrayRef<const std::string>(boot_class_path_).SubArray(bcp_index, 1u), in ExpandLocationImpl()
1497 DCHECK_LE(bcp_index, boot_class_path_.size()); in GetBcpComponentPath()
1498 size_t bcp_slash_pos = boot_class_path_[bcp_index].rfind('/'); in GetBcpComponentPath()
1500 return boot_class_path_[bcp_index].substr(0u, bcp_slash_pos + 1u); in GetBcpComponentPath()
1554 ArrayRef<const std::string> boot_class_path_; member in art::gc::space::ImageSpace::BootImageLayout
1577 size_t slash_pos = boot_class_path_.empty() in GetPrimaryImageLocation()
1579 : boot_class_path_[0].rfind('/'); in GetPrimaryImageLocation()
1583 location.insert(0u, boot_class_path_[0].substr(0u, slash_pos + 1u)); in GetPrimaryImageLocation()
1595 for (const std::string& bcp_component : boot_class_path_) { in VerifyImageLocation()
[all …]
/art/runtime/
Dcommon_runtime_test.cc77 boot_class_path_(), in CommonRuntimeTestImpl()
137 boot_class_path_ = class_linker_->GetBootClassPath(); in SetUp()
138 ASSERT_FALSE(boot_class_path_.empty()); in SetUp()
139 java_lang_dex_file_ = boot_class_path_[0]; in SetUp()
Druntime.h289 return boot_class_path_; in GetBootClassPath()
294 boot_class_path_locations_.size() == boot_class_path_.size()); in GetBootClassPathLocations()
295 return boot_class_path_locations_.empty() ? boot_class_path_ : boot_class_path_locations_; in GetBootClassPathLocations()
1173 std::vector<std::string> boot_class_path_; variable
Dcommon_runtime_test.h196 std::vector<const DexFile*> boot_class_path_; variable
Druntime.cc1457 boot_class_path_ = runtime_options.ReleaseOrDefault(Opt::BootClassPath); in Init()
1460 boot_class_path_locations_.size() == boot_class_path_.size()); in Init()
1461 if (boot_class_path_.empty()) { in Init()
1467 if (!boot_class_path_fds_.empty() && boot_class_path_fds_.size() != boot_class_path_.size()) { in Init()
1477 boot_class_path_image_fds_.size() == boot_class_path_.size()); in Init()
1479 boot_class_path_vdex_fds_.size() == boot_class_path_.size()); in Init()
1481 boot_class_path_oat_fds_.size() == boot_class_path_.size()); in Init()
Dclass_linker.h474 return boot_class_path_; in GetBootClassPath()
1279 std::vector<const DexFile*> boot_class_path_; variable
Doat_file_assistant_test.cc95 runtime->boot_class_path_.push_back(extra_dex_filename); in InsertNewBootClasspathEntry()
Dclass_linker.cc2817 ClassPathEntry pair = FindInClassPath(descriptor, hash, boot_class_path_); in FindClassInBootClassLoaderClassPath()
2898 ClassPathEntry pair = FindInClassPath(descriptor, hash, boot_class_path_); in FindClass()
3793 boot_class_path_.push_back(dex_file); in AppendToBootClassPath()