Home
last modified time | relevance | path

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

/art/runtime/
Dparsed_options_test.cc39 std::string class_path; in TEST_F() local
46 class_path += ":"; in TEST_F()
50 class_path += dex_file_name; in TEST_F()
52 boot_class_path += class_path; in TEST_F()
57 options.push_back(std::make_pair(class_path.c_str(), nullptr)); in TEST_F()
59 options.push_back(std::make_pair(class_path.c_str(), nullptr)); in TEST_F()
83 EXPECT_PARSED_EQ(class_path, Opt::BootClassPath); in TEST_F()
84 EXPECT_PARSED_EQ(class_path, Opt::ClassPath); in TEST_F()
Dcommon_runtime_test.cc669 std::vector<const DexFile*> class_path; in LoadMultiDex() local
673 class_path.push_back(dex_file.get()); in LoadMultiDex()
677 class_path.push_back(dex_file.get()); in LoadMultiDex()
683 class_path); in LoadMultiDex()
698 std::vector<const DexFile*> class_path; in LoadDexInWellKnownClassLoader() local
701 class_path.push_back(dex_file.get()); in LoadDexInWellKnownClassLoader()
709 class_path, in LoadDexInWellKnownClassLoader()
Dclass_linker.cc2490 size_t hash, const std::vector<const DexFile*>& class_path) { in FindInClassPath() argument
2491 for (const DexFile* dex_file : class_path) { in FindInClassPath()
/art/compiler/
Dimage_test.h144 std::vector<const DexFile*> class_path = class_linker->GetBootClassPath(); in Compile() local
152 class_path.push_back(dex_file.get()); in Compile()
156 for (const DexFile* dex_file : class_path) { in Compile()
165 for (int i = 0; i < static_cast<int>(class_path.size()); ++i) { in Compile()
206 for (const DexFile* dex_file : class_path) { in Compile()
224 driver->SetDexFilesForOatFile(class_path); in Compile()
225 driver->CompileAll(class_loader, class_path, &timings); in Compile()
230 for (size_t i = 0; i < class_path.size(); ++i) { in Compile()
257 const DexFile* dex_file = class_path[i]; in Compile()
308 std::vector<const DexFile*> cur_dex_files(1u, class_path[i]); in Compile()
/art/runtime/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/compiler/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/runtime/native/
Ddalvik_system_VMRuntime.cc177 static const char* DefaultToDot(const std::string& class_path) { in DefaultToDot() argument
178 return class_path.empty() ? "." : class_path.c_str(); in DefaultToDot()
/art/oatdump/
Doatdump.cc2816 std::vector<const DexFile*>* class_path) in InstallOatFile() argument
2834 class_path->push_back(dex_file); in InstallOatFile()
2842 jobject class_loader = class_linker->CreatePathClassLoader(self, *class_path); in InstallOatFile()
2855 std::vector<const DexFile*> class_path; in DumpOatWithRuntime() local
2856 jobject class_loader = InstallOatFile(runtime, std::move(oat_file), &class_path); in DumpOatWithRuntime()
2947 std::vector<const DexFile*> class_path; in Dump() local
2965 InstallOatFile(runtime, std::move(oat_file), &class_path))); in Dump()
2968 class_path = runtime->GetClassLinker()->GetBootClassPath(); in Dump()
2976 return DumpImtStats(runtime, class_path, class_loader); in Dump()
/art/runtime/jdwp/
Djdwp_handler.cc288 std::vector<std::string> class_path; in VM_ClassPaths() local
289 Split(Runtime::Current()->GetClassPathString(), ':', &class_path); in VM_ClassPaths()
290 expandBufAdd4BE(pReply, class_path.size()); in VM_ClassPaths()
291 for (const std::string& str : class_path) { in VM_ClassPaths()
/art/dex2oat/
Ddex2oat.cc2366 std::vector<std::string> GetClassPathLocations(const std::string& class_path) { in GetClassPathLocations() argument
2376 Split(class_path, ':', &parsed); in GetClassPathLocations()