Searched refs:class_path (Results 1 – 11 of 11) sorted by relevance
/aosp12/art/runtime/ |
H A D | parsed_options_test.cc | 39 std::string class_path; in TEST_F() local 45 class_path += ":"; in TEST_F() 49 class_path += dex_file_name; in TEST_F() 51 boot_class_path += class_path; in TEST_F() 53 Split(class_path, ':', &expected_boot_class_path); in TEST_F() 58 options.push_back(std::make_pair(class_path.c_str(), nullptr)); in TEST_F() 60 options.push_back(std::make_pair(class_path.c_str(), nullptr)); in TEST_F() 88 EXPECT_PARSED_EQ(class_path, Opt::ClassPath); in TEST_F()
|
H A D | common_runtime_test.cc | 229 std::vector<const DexFile*> class_path; in LoadMultiDex() local 233 class_path.push_back(dex_file.get()); in LoadMultiDex() 237 class_path.push_back(dex_file.get()); in LoadMultiDex() 243 class_path); in LoadMultiDex() 259 std::vector<const DexFile*> class_path; in LoadDexInWellKnownClassLoader() local 264 class_path.push_back(dex_file.get()); in LoadDexInWellKnownClassLoader() 273 class_path, in LoadDexInWellKnownClassLoader()
|
H A D | module_exclusion_test.cc | 97 std::vector<const DexFile*> class_path; in LoadModule() local 100 class_path.push_back(dex_file.get()); in LoadModule() 112 class_path, in LoadModule()
|
H A D | class_linker.cc | 2613 size_t hash, const std::vector<const DexFile*>& class_path) { in FindInClassPath() argument 2614 for (const DexFile* dex_file : class_path) { in FindInClassPath()
|
/aosp12/art/dex2oat/linker/ |
H A D | image_test.h | 153 std::vector<const DexFile*> class_path = class_linker->GetBootClassPath(); in DoCompile() local 161 class_path.push_back(dex_file.get()); in DoCompile() 165 for (const DexFile* dex_file : class_path) { in DoCompile() 178 for (size_t i = 0u; i != class_path.size(); ++i) { in DoCompile() 209 for (const DexFile* dex_file : class_path) { in DoCompile() 224 CompileAll(class_loader, class_path, &timings); in DoCompile() 247 const DexFile* dex_file = class_path[i]; in DoCompile() 289 std::vector<const DexFile*> cur_dex_files(1u, class_path[i]); in DoCompile()
|
/aosp12/art/openjdkjvmti/ |
H A D | ti_properties.cc | 156 static const char* DefaultToDot(const std::string& class_path) { in DefaultToDot() argument 157 return class_path.empty() ? "." : class_path.c_str(); in DefaultToDot()
|
/aosp12/art/dex2oat/driver/ |
H A D | compiler_driver_test.cc | 72 const std::vector<const DexFile*> class_path = GetDexFiles(class_loader); in MakeAllExecutable() local 73 for (size_t i = 0; i != class_path.size(); ++i) { in MakeAllExecutable() 74 const DexFile* dex_file = class_path[i]; in MakeAllExecutable()
|
/aosp12/art/runtime/native/ |
H A D | dalvik_system_VMRuntime.cc | 216 static const char* DefaultToDot(const std::string& class_path) { in DefaultToDot() argument 217 return class_path.empty() ? "." : class_path.c_str(); in DefaultToDot()
|
/aosp12/art/oatdump/ |
H A D | oatdump.cc | 2466 std::vector<const DexFile*>* class_path) in InstallOatFile() argument 2481 class_path->push_back(dex_file); in InstallOatFile() 2489 jobject class_loader = class_linker->CreatePathClassLoader(self, *class_path); in InstallOatFile() 2492 for (const DexFile* dex_file : *class_path) { in InstallOatFile() 2509 std::vector<const DexFile*> class_path; in DumpOatWithRuntime() local 2510 jobject class_loader = InstallOatFile(runtime, std::move(oat_file), &class_path); in DumpOatWithRuntime() 2618 std::vector<const DexFile*> class_path; in Dump() local 2639 InstallOatFile(runtime, std::move(oat_file), &class_path))); in Dump() 2642 class_path = runtime->GetClassLinker()->GetBootClassPath(); in Dump() 2650 return DumpImtStats(runtime, class_path, class_loader); in Dump()
|
/aosp12/art/libartbase/base/ |
H A D | common_art_test.h | 158 const std::vector<std::string>& class_path);
|
H A D | common_art_test.cc | 491 const std::vector<std::string>& class_path) { in GetClassPathOption() argument 492 return option + android::base::Join(class_path, ':'); in GetClassPathOption()
|