Searched refs:class_path (Results 1 – 10 of 10) sorted by relevance
/art/runtime/ |
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()
|
D | common_runtime_test.cc | 234 std::vector<const DexFile*> class_path; in LoadMultiDex() local 238 class_path.push_back(dex_file.get()); in LoadMultiDex() 242 class_path.push_back(dex_file.get()); in LoadMultiDex() 248 class_path); in LoadMultiDex() 266 std::vector<const DexFile*> class_path; in LoadDexInWellKnownClassLoader() local 271 class_path.push_back(dex_file.get()); in LoadDexInWellKnownClassLoader() 287 class_path, in LoadDexInWellKnownClassLoader()
|
D | class_linker.cc | 2959 size_t hash, const std::vector<const DexFile*>& class_path) { in FindInClassPath() argument 2960 for (const DexFile* dex_file : class_path) { in FindInClassPath()
|
/art/dex2oat/linker/ |
D | image_test.h | 169 std::vector<const DexFile*> class_path = class_linker->GetBootClassPath(); in DoCompile() local 172 for (const DexFile* dex_file : class_path) { in DoCompile() 185 for (size_t i = 0u; i != class_path.size(); ++i) { in DoCompile() 216 for (const DexFile* dex_file : class_path) { in DoCompile() 231 CompileAll(class_loader, class_path, &timings); in DoCompile() 258 const DexFile* dex_file = class_path[i]; in DoCompile() 298 std::vector<const DexFile*> cur_dex_files(1u, class_path[i]); in DoCompile()
|
/art/openjdkjvmti/ |
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()
|
/art/dex2oat/driver/ |
D | compiler_driver_test.cc | 73 const std::vector<const DexFile*> class_path = GetDexFiles(class_loader); in MakeAllExecutable() local 74 for (size_t i = 0; i != class_path.size(); ++i) { in MakeAllExecutable() 75 const DexFile* dex_file = class_path[i]; in MakeAllExecutable()
|
/art/runtime/native/ |
D | dalvik_system_VMRuntime.cc | 204 static const char* DefaultToDot(const std::string& class_path) { in DefaultToDot() argument 205 return class_path.empty() ? "." : class_path.c_str(); in DefaultToDot()
|
/art/libartbase/base/ |
D | common_art_test.h | 167 const std::vector<std::string>& class_path);
|
D | common_art_test.cc | 497 const std::vector<std::string>& class_path) { in GetClassPathOption() argument 498 return option + android::base::Join(class_path, ':'); in GetClassPathOption()
|
/art/oatdump/ |
D | oatdump.cc | 2583 std::vector<const DexFile*>* class_path) in InstallOatFile() argument 2598 class_path->push_back(dex_file); in InstallOatFile() 2606 jobject class_loader = class_linker->CreatePathClassLoader(self, *class_path); in InstallOatFile() 2609 for (const DexFile* dex_file : *class_path) { in InstallOatFile() 2626 std::vector<const DexFile*> class_path; in DumpOatWithRuntime() local 2627 jobject class_loader = InstallOatFile(runtime, std::move(oat_file), &class_path); in DumpOatWithRuntime() 2711 std::vector<const DexFile*> class_path; in Dump() local 2725 InstallOatFile(runtime, std::move(oat_file), &class_path))); in Dump() 2728 class_path = runtime->GetClassLinker()->GetBootClassPath(); in Dump() 2736 return DumpImtStats(runtime, class_path, class_loader); in Dump()
|