Home
last modified time | relevance | path

Searched refs:class_path (Results 1 – 11 of 11) sorted by relevance

/art/runtime/
Dparsed_options_test.cc39 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()
Dmodule_exclusion_test.cc97 std::vector<const DexFile*> class_path; in LoadModule() local
100 class_path.push_back(dex_file.get()); in LoadModule()
112 class_path, in LoadModule()
Dcommon_runtime_test.cc225 std::vector<const DexFile*> class_path; in LoadMultiDex() local
229 class_path.push_back(dex_file.get()); in LoadMultiDex()
233 class_path.push_back(dex_file.get()); in LoadMultiDex()
239 class_path); in LoadMultiDex()
255 std::vector<const DexFile*> class_path; in LoadDexInWellKnownClassLoader() local
260 class_path.push_back(dex_file.get()); in LoadDexInWellKnownClassLoader()
269 class_path, in LoadDexInWellKnownClassLoader()
Dclass_linker.cc2827 size_t hash, const std::vector<const DexFile*>& class_path) { in FindInClassPath() argument
2828 for (const DexFile* dex_file : class_path) { in FindInClassPath()
/art/dex2oat/linker/
Dimage_test.h153 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()
290 std::vector<const DexFile*> cur_dex_files(1u, class_path[i]); in DoCompile()
/art/openjdkjvmti/
Dti_properties.cc156 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/
Dcompiler_driver_test.cc72 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()
/art/libartbase/base/
Dcommon_art_test.cc470 const std::vector<std::string>& class_path) { in GetClassPathOption() argument
471 return option + android::base::Join(class_path, ':'); in GetClassPathOption()
Dcommon_art_test.h195 const std::vector<std::string>& class_path);
/art/runtime/native/
Ddalvik_system_VMRuntime.cc222 static const char* DefaultToDot(const std::string& class_path) { in DefaultToDot() argument
223 return class_path.empty() ? "." : class_path.c_str(); in DefaultToDot()
/art/oatdump/
Doatdump.cc2832 std::vector<const DexFile*>* class_path) in InstallOatFile() argument
2847 class_path->push_back(dex_file); in InstallOatFile()
2855 jobject class_loader = class_linker->CreatePathClassLoader(self, *class_path); in InstallOatFile()
2858 for (const DexFile* dex_file : *class_path) { in InstallOatFile()
2875 std::vector<const DexFile*> class_path; in DumpOatWithRuntime() local
2876 jobject class_loader = InstallOatFile(runtime, std::move(oat_file), &class_path); in DumpOatWithRuntime()
2984 std::vector<const DexFile*> class_path; in Dump() local
3005 InstallOatFile(runtime, std::move(oat_file), &class_path))); in Dump()
3008 class_path = runtime->GetClassLinker()->GetBootClassPath(); in Dump()
3016 return DumpImtStats(runtime, class_path, class_loader); in Dump()