Searched refs:boot_class_path_ (Results 1 – 8 of 8) sorted by relevance
/art/runtime/gc/space/ |
D | image_space.cc | 1429 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/ |
D | common_runtime_test.cc | 77 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()
|
D | runtime.h | 289 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
|
D | common_runtime_test.h | 196 std::vector<const DexFile*> boot_class_path_; variable
|
D | runtime.cc | 1457 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()
|
D | class_linker.h | 474 return boot_class_path_; in GetBootClassPath() 1279 std::vector<const DexFile*> boot_class_path_; variable
|
D | oat_file_assistant_test.cc | 95 runtime->boot_class_path_.push_back(extra_dex_filename); in InsertNewBootClasspathEntry()
|
D | class_linker.cc | 2817 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()
|