Lines Matching refs:class_loader
38 void CompileAll(jobject class_loader) LOCKS_EXCLUDED(Locks::mutator_lock_) { in CompileAll() argument
41 compiler_driver_->CompileAll(class_loader, in CompileAll()
42 Runtime::Current()->GetCompileTimeClassPath(class_loader), in CompileAll()
44 MakeAllExecutable(class_loader); in CompileAll()
47 void EnsureCompiled(jobject class_loader, const char* class_name, const char* method, in EnsureCompiled() argument
50 CompileAll(class_loader); in EnsureCompiled()
65 void MakeAllExecutable(jobject class_loader) { in MakeAllExecutable() argument
67 = Runtime::Current()->GetCompileTimeClassPath(class_loader); in MakeAllExecutable()
71 MakeDexFileExecutable(class_loader, *dex_file); in MakeAllExecutable()
75 void MakeDexFileExecutable(jobject class_loader, const DexFile& dex_file) { in MakeDexFileExecutable() argument
81 …or::Class* c = class_linker->FindClass(descriptor, soa.Decode<mirror::ClassLoader*>(class_loader)); in MakeDexFileExecutable()
142 jobject class_loader; in TEST_F() local
147 class_loader = LoadDex("AbstractMethod"); in TEST_F()
149 ASSERT_TRUE(class_loader != NULL); in TEST_F()
150 EnsureCompiled(class_loader, "AbstractClass", "foo", "()V", true); in TEST_F()