Home
last modified time | relevance | path

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

/art/compiler/driver/
Dcompiler_driver_test.cc69 const std::vector<const DexFile*> class_path = GetDexFiles(class_loader); in MakeAllExecutable() local
70 for (size_t i = 0; i != class_path.size(); ++i) { in MakeAllExecutable()
71 const DexFile* dex_file = class_path[i]; in MakeAllExecutable()
/art/runtime/
Dcommon_runtime_test.cc546 std::vector<const DexFile*> class_path; in LoadDex() local
549 class_path.push_back(dex_file.get()); in LoadDex()
554 …elf, class_path); in LoadDex()
Dclass_linker.cc1589 size_t hash, const std::vector<const DexFile*>& class_path) { in FindInClassPath() argument
1590 for (const DexFile* dex_file : class_path) { in FindInClassPath()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc157 static const char* DefaultToDot(const std::string& class_path) { in DefaultToDot() argument
158 return class_path.empty() ? "." : class_path.c_str(); in DefaultToDot()
/art/runtime/jdwp/
Djdwp_handler.cc285 std::vector<std::string> class_path; in VM_ClassPaths() local
286 Split(Runtime::Current()->GetClassPathString(), ':', &class_path); in VM_ClassPaths()
287 expandBufAdd4BE(pReply, class_path.size()); in VM_ClassPaths()
288 for (const std::string& str : class_path) { in VM_ClassPaths()
/art/oatdump/
Doatdump.cc2234 std::vector<const DexFile*> class_path; in DumpOatWithRuntime() local
2236 class_path.push_back(dex_file.get()); in DumpOatWithRuntime()
2238 jobject class_loader = class_linker->CreatePathClassLoader(self, class_path); in DumpOatWithRuntime()
/art/dex2oat/
Ddex2oat.cc1665 static void OpenClassPathFiles(const std::string& class_path, in OpenClassPathFiles() argument
1670 Split(class_path, ':', &parsed); in OpenClassPathFiles()