Searched refs:boot_class_path_ (Results 1 – 8 of 8) sorted by relevance
/art/runtime/gc/space/ |
D | image_space.cc | 1651 boot_class_path_(boot_class_path), in BootImageLayout() 1709 ArrayRef<const std::string>(boot_class_path_).SubArray(bcp_index, 1u), in ExpandLocationImpl() 1726 DCHECK_LE(bcp_index, boot_class_path_.size()); in GetBcpComponentPath() 1727 size_t bcp_slash_pos = boot_class_path_[bcp_index].rfind('/'); in GetBcpComponentPath() 1729 return boot_class_path_[bcp_index].substr(0u, bcp_slash_pos + 1u); in GetBcpComponentPath() 1779 ArrayRef<const std::string> boot_class_path_; member in art::gc::space::ImageSpace::BootImageLayout 1801 size_t slash_pos = boot_class_path_.empty() in GetPrimaryImageLocation() 1803 : boot_class_path_[0].rfind('/'); in GetPrimaryImageLocation() 1807 location.insert(0u, boot_class_path_[0].substr(0u, slash_pos + 1u)); in GetPrimaryImageLocation() 1819 for (const std::string& bcp_component : boot_class_path_) { in VerifyImageLocation() [all …]
|
/art/runtime/ |
D | runtime.h | 278 return boot_class_path_; in GetBootClassPath() 283 boot_class_path_locations_.size() == boot_class_path_.size()); in GetBootClassPathLocations() 284 return boot_class_path_locations_.empty() ? boot_class_path_ : boot_class_path_locations_; in GetBootClassPathLocations() 1063 std::vector<std::string> boot_class_path_; variable
|
D | common_runtime_test.cc | 129 boot_class_path_ = class_linker_->GetBootClassPath(); in SetUp() 130 ASSERT_FALSE(boot_class_path_.empty()); in SetUp() 131 java_lang_dex_file_ = boot_class_path_[0]; in SetUp()
|
D | common_runtime_test.h | 185 std::vector<const DexFile*> boot_class_path_; variable
|
D | runtime.cc | 1245 boot_class_path_ = runtime_options.ReleaseOrDefault(Opt::BootClassPath); in Init() 1248 boot_class_path_locations_.size() == boot_class_path_.size()); in Init() 1249 if (boot_class_path_.empty()) { in Init() 1272 Split(oat_boot_class_path, ':', &boot_class_path_); in Init() 1274 if (boot_class_path_.empty()) { in Init()
|
D | class_linker.h | 465 return boot_class_path_; in GetBootClassPath() 1400 std::vector<const DexFile*> boot_class_path_; variable
|
D | oat_file_assistant_test.cc | 69 runtime->boot_class_path_.push_back(extra_dex_filename); in InsertNewBootClasspathEntry()
|
D | class_linker.cc | 2982 ClassPathEntry pair = FindInClassPath(descriptor, hash, boot_class_path_); in FindClassInBootClassLoaderClassPath() 3061 ClassPathEntry pair = FindInClassPath(descriptor, hash, boot_class_path_); in FindClass() 4044 boot_class_path_.push_back(dex_file); in AppendToBootClassPath()
|