Home
last modified time | relevance | path

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

/aosp_15_r20/art/cmdline/
H A Dcmdline.h210 std::vector<std::string> boot_class_path_; member
270 if (boot_class_path_.empty()) { in GetOatFileAssistantContext()
281 .boot_class_path = boot_class_path_, in GetOatFileAssistantContext()
315 Split(*bcp_str, ':', &boot_class_path_); in ParseBootclasspath()
318 Split(*bcp_str, ':', &boot_class_path_); in ParseBootclasspath()
319 boot_class_path_locations_ = boot_class_path_; in ParseBootclasspath()
324 Split(env_value, ':', &boot_class_path_); in ParseBootclasspath()
325 boot_class_path_locations_ = boot_class_path_; in ParseBootclasspath()
340 if (boot_class_path_.empty() || !is_default_boot_class_path_) { in InferBootImage()
/aosp_15_r20/art/runtime/gc/space/
H A Dimage_space.h356 boot_class_path_(boot_class_path), in BootImageLayout()
391 ArrayRef<const std::string>(boot_class_path_).SubArray(bcp_index, 1u), in ExpandLocationImpl()
409 DCHECK_LE(bcp_index, boot_class_path_.size()); in GetBcpComponentPath()
410 size_t bcp_slash_pos = boot_class_path_[bcp_index].rfind('/'); in GetBcpComponentPath()
412 return boot_class_path_[bcp_index].substr(0u, bcp_slash_pos + 1u); in GetBcpComponentPath()
460 ArrayRef<const std::string> boot_class_path_; variable
H A Dimage_space.cc1507 size_t slash_pos = boot_class_path_.empty() in GetPrimaryImageLocation()
1509 : boot_class_path_[0].rfind('/'); in GetPrimaryImageLocation()
1513 location.insert(0u, boot_class_path_[0].substr(0u, slash_pos + 1u)); in GetPrimaryImageLocation()
1525 for (const std::string& bcp_component : boot_class_path_) { in VerifyImageLocation()
1603 size_t bcp_component_count = boot_class_path_.size(); in MatchNamedComponents()
1734 size_t bcp_component_count = boot_class_path_.size(); in ValidateHeader()
1780 ArrayRef<const std::string>(boot_class_path_).SubArray(bcp_index, component_count); in ValidateOatFile()
1833 DCHECK_LT(bcp_index, boot_class_path_.size()); in ReadHeader()
1897 size_t bcp_component_count = boot_class_path_.size(); in CompileBootclasspathElements()
1983 boot_class_path_.SubArray(/*pos=*/ 0u, /*length=*/ dependency_component_count); in CompileBootclasspathElements()
[all …]
/aosp_15_r20/art/runtime/
H A Dcommon_runtime_test.cc77 boot_class_path_(), in CommonRuntimeTestImpl()
141 boot_class_path_ = class_linker_->GetBootClassPath(); in SetUp()
142 ASSERT_FALSE(boot_class_path_.empty()); in SetUp()
143 java_lang_dex_file_ = boot_class_path_[0]; in SetUp()
H A Druntime.h326 return boot_class_path_; in GetBootClassPath()
331 boot_class_path_locations_.size() == boot_class_path_.size()); in GetBootClassPathLocations()
332 return boot_class_path_locations_.empty() ? boot_class_path_ : boot_class_path_locations_; in GetBootClassPathLocations()
1233 std::vector<std::string> boot_class_path_; variable
H A Druntime.cc1596 boot_class_path_ = runtime_options.ReleaseOrDefault(Opt::BootClassPath); in Init()
1599 boot_class_path_locations_.size() == boot_class_path_.size()); in Init()
1600 if (boot_class_path_.empty()) { in Init()
1607 if (!boot_class_path_files_.empty() && boot_class_path_files_.size() != boot_class_path_.size()) { in Init()
1620 boot_class_path_image_files_.size() == boot_class_path_.size()); in Init()
1622 boot_class_path_vdex_files_.size() == boot_class_path_.size()); in Init()
1624 boot_class_path_oat_files_.size() == boot_class_path_.size()); in Init()
3435 boot_class_path_.push_back(filename); in AppendToBootClassPath()
H A Dcommon_runtime_test.h203 std::vector<const DexFile*> boot_class_path_; variable
H A Dclass_linker.h501 return boot_class_path_; in GetBootClassPath()
1418 std::vector<const DexFile*> boot_class_path_; variable
H A Dclass_linker.cc3183 ClassPathEntry pair = FindInClassPath(sv_descriptor, hash, boot_class_path_); in FindClassInBootClassLoaderClassPath()
3282 ClassPathEntry pair = FindInClassPath(sv_descriptor, hash, boot_class_path_); in FindClass()
4243 boot_class_path_.push_back(dex_file); in AppendToBootClassPath()