Searched refs:class_path (Results 1 – 7 of 7) sorted by relevance
/art/compiler/driver/ |
D | compiler_driver_test.cc | 69 const std::vector<const DexFile*>& class_path in MakeAllExecutable() local 71 for (size_t i = 0; i != class_path.size(); ++i) { in MakeAllExecutable() 72 const DexFile* dex_file = class_path[i]; in MakeAllExecutable()
|
/art/runtime/native/ |
D | dalvik_system_VMRuntime.cc | 142 static const char* DefaultToDot(const std::string& class_path) { in DefaultToDot() argument 143 return class_path.empty() ? "." : class_path.c_str(); in DefaultToDot()
|
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 331 std::vector<std::string> class_path; in VM_ClassPaths() local 332 Split(Runtime::Current()->GetClassPathString(), ':', class_path); in VM_ClassPaths() 333 expandBufAdd4BE(pReply, class_path.size()); in VM_ClassPaths() 334 for (size_t i = 0; i < class_path.size(); ++i) { in VM_ClassPaths() 335 expandBufAddUtf8String(pReply, class_path[i]); in VM_ClassPaths()
|
/art/runtime/ |
D | runtime.h | 427 void SetCompileTimeClassPath(jobject class_loader, std::vector<const DexFile*>& class_path);
|
D | runtime.cc | 1329 std::vector<const DexFile*>& class_path) { in SetCompileTimeClassPath() argument 1332 compile_time_class_paths_.Put(class_loader, class_path); in SetCompileTimeClassPath()
|
D | class_linker.cc | 2021 size_t hash, const std::vector<const DexFile*>& class_path) { in FindInClassPath() argument 2022 for (const DexFile* dex_file : class_path) { in FindInClassPath() 2166 const std::vector<const DexFile*>* class_path; in FindClass() local 2171 class_path = &Runtime::Current()->GetCompileTimeClassPath(jclass_loader.get()); in FindClass() 2173 pair = FindInClassPath(descriptor, hash, *class_path); in FindClass()
|
/art/dex2oat/ |
D | dex2oat.cc | 551 static void OpenClassPathFiles(const std::string& class_path, in OpenClassPathFiles() argument 554 Split(class_path, ':', parsed); in OpenClassPathFiles()
|