Home
last modified time | relevance | path

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

/art/runtime/
Dcommon_runtime_test.cc152 boot_class_path_ = class_linker_->GetBootClassPath(); in SetUp()
153 ASSERT_FALSE(boot_class_path_.empty()); in SetUp()
154 java_lang_dex_file_ = boot_class_path_[0]; in SetUp()
Druntime.h262 return boot_class_path_; in GetBootClassPath()
267 boot_class_path_locations_.size() == boot_class_path_.size()); in GetBootClassPathLocations()
268 return boot_class_path_locations_.empty() ? boot_class_path_ : boot_class_path_locations_; in GetBootClassPathLocations()
960 std::vector<std::string> boot_class_path_; variable
Dcommon_runtime_test.h134 std::vector<const DexFile*> boot_class_path_; variable
Druntime.cc1176 boot_class_path_ = runtime_options.ReleaseOrDefault(Opt::BootClassPath); in Init()
1179 boot_class_path_locations_.size() == boot_class_path_.size()); in Init()
1180 if (boot_class_path_.empty()) { in Init()
1205 Split(oat_boot_class_path, ':', &boot_class_path_); in Init()
1207 if (boot_class_path_.empty()) { in Init()
Dclass_linker.h440 return boot_class_path_; in GetBootClassPath()
1331 std::vector<const DexFile*> boot_class_path_; variable
Doat_file_assistant_test.cc67 runtime->boot_class_path_.push_back(extra_dex_filename); in InsertNewBootClasspathEntry()
Dclass_linker.cc2839 ClassPathEntry pair = FindInClassPath(descriptor, hash, boot_class_path_); in FindClassInBootClassLoaderClassPath()
2918 ClassPathEntry pair = FindInClassPath(descriptor, hash, boot_class_path_); in FindClass()
3806 boot_class_path_.push_back(&dex_file); in AppendToBootClassPath()
/art/runtime/gc/space/
Dimage_space.cc1369 : boot_class_path_(boot_class_path), in BootImageLoader()
1483 system_hdr.GetComponentCount() > boot_class_path_.size()) { in LoadFromFile()
1488 boot_class_path_.size()); in LoadFromFile()
1528 boot_class_path_[i], in LoadFromFile()
1915 const std::vector<std::string>& boot_class_path_; member in art::gc::space::ImageSpace::BootImageLoader