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()
87 EXPECT_PARSED_EQ(class_path, Opt::ClassPath); in TEST_F()
Dmodule_exclusion_test.cc87 std::vector<const DexFile*> class_path; in LoadModule() local
90 class_path.push_back(dex_file.get()); in LoadModule()
102 class_path, in LoadModule()
Dcommon_runtime_test.cc248 std::vector<const DexFile*> class_path; in LoadMultiDex() local
252 class_path.push_back(dex_file.get()); in LoadMultiDex()
256 class_path.push_back(dex_file.get()); in LoadMultiDex()
262 class_path); in LoadMultiDex()
278 std::vector<const DexFile*> class_path; in LoadDexInWellKnownClassLoader() local
281 class_path.push_back(dex_file.get()); in LoadDexInWellKnownClassLoader()
289 class_path, in LoadDexInWellKnownClassLoader()
/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/linker/
Dimage_test.h154 std::vector<const DexFile*> class_path = class_linker->GetBootClassPath(); in DoCompile() local
162 class_path.push_back(dex_file.get()); in DoCompile()
166 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()
225 CompileAll(class_loader, class_path, &timings); in DoCompile()
248 const DexFile* dex_file = class_path[i]; in DoCompile()
292 std::vector<const DexFile*> cur_dex_files(1u, class_path[i]); in DoCompile()
/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.h126 const std::vector<std::string>& class_path);
Dcommon_art_test.cc399 const std::vector<std::string>& class_path) { in GetClassPathOption() argument
400 return option + android::base::Join(class_path, ':'); in GetClassPathOption()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc223 static const char* DefaultToDot(const std::string& class_path) { in DefaultToDot() argument
224 return class_path.empty() ? "." : class_path.c_str(); in DefaultToDot()
/art/oatdump/
Doatdump.cc2809 std::vector<const DexFile*>* class_path) in InstallOatFile() argument
2824 class_path->push_back(dex_file); in InstallOatFile()
2832 jobject class_loader = class_linker->CreatePathClassLoader(self, *class_path); in InstallOatFile()
2835 for (const DexFile* dex_file : *class_path) { in InstallOatFile()
2852 std::vector<const DexFile*> class_path; in DumpOatWithRuntime() local
2853 jobject class_loader = InstallOatFile(runtime, std::move(oat_file), &class_path); in DumpOatWithRuntime()
2955 std::vector<const DexFile*> class_path; in Dump() local
2973 InstallOatFile(runtime, std::move(oat_file), &class_path))); in Dump()
2976 class_path = runtime->GetClassLinker()->GetBootClassPath(); in Dump()
2984 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()