Searched defs:class_path (Results 1 - 6 of 6) sorted by relevance

/art/compiler/driver/
H A Dcompiler_driver_test.cc69 const std::vector<const DexFile*>& class_path local
71 for (size_t i = 0; i != class_path.size(); ++i) {
72 const DexFile* dex_file = class_path[i];
/art/runtime/jdwp/
H A Djdwp_handler.cc331 std::vector<std::string> class_path; local
332 Split(Runtime::Current()->GetClassPathString(), ':', class_path);
333 expandBufAdd4BE(pReply, class_path.size());
334 for (size_t i = 0; i < class_path.size(); ++i) {
335 expandBufAddUtf8String(pReply, class_path[i]);
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc142 static const char* DefaultToDot(const std::string& class_path) { argument
143 return class_path.empty() ? "." : class_path.c_str();
/art/runtime/
H A Druntime.cc1329 std::vector<const DexFile*>& class_path) {
1332 compile_time_class_paths_.Put(class_loader, class_path);
1328 SetCompileTimeClassPath(jobject class_loader, std::vector<const DexFile*>& class_path) argument
H A Dclass_linker.cc347 // Setup boot_class_path_ and register class_path now that we can use AllocObjectArray to create
2021 size_t hash, const std::vector<const DexFile*>& class_path) {
2022 for (const DexFile* dex_file : class_path) {
2166 const std::vector<const DexFile*>* class_path; local
2171 class_path = &Runtime::Current()->GetCompileTimeClassPath(jclass_loader.get());
2173 pair = FindInClassPath(descriptor, hash, *class_path);
2020 FindInClassPath(const char* descriptor, size_t hash, const std::vector<const DexFile*>& class_path) argument
/art/dex2oat/
H A Ddex2oat.cc549 // Appends to dex_files any elements of class_path that it doesn't already
551 static void OpenClassPathFiles(const std::string& class_path, argument
554 Split(class_path, ':', parsed);

Completed in 334 milliseconds