Lines Matching refs:soa
47 ScopedObjectAccess soa(Thread::Current()); in TEST_F() local
49 StackHandleScope<4> hs(soa.Self()); in TEST_F()
51 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader))); in TEST_F()
54 class_linker_->FindClass(soa.Self(), "LInterfaces$I;", class_loader))); in TEST_F()
56 class_linker_->FindClass(soa.Self(), "LInterfaces$J;", class_loader))); in TEST_F()
64 GenerateProxyClass(soa, jclass_loader, class_linker_, "$Proxy1234", interfaces))); in TEST_F()
71 EXPECT_OBJ_PTR_EQ(I.Get(), mirror::Class::GetDirectInterface(soa.Self(), proxy_class.Get(), 0)); in TEST_F()
72 EXPECT_OBJ_PTR_EQ(J.Get(), mirror::Class::GetDirectInterface(soa.Self(), proxy_class.Get(), 1)); in TEST_F()
81 ScopedObjectAccess soa(Thread::Current()); in TEST_F() local
83 StackHandleScope<9> hs(soa.Self()); in TEST_F()
85 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader))); in TEST_F()
88 class_linker_->FindClass(soa.Self(), "LInterfaces$I;", class_loader))); in TEST_F()
90 class_linker_->FindClass(soa.Self(), "LInterfaces$J;", class_loader))); in TEST_F()
100 GenerateProxyClass(soa, jclass_loader, class_linker_, "$Proxy1234", interfaces)); in TEST_F()
114 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "[Ljava/lang/Class;"))); in TEST_F()
117 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "[[Ljava/lang/Class;"))); in TEST_F()
140 ScopedObjectAccess soa(Thread::Current()); in TEST_F() local
142 StackHandleScope<7> hs(soa.Self()); in TEST_F()
149 GenerateProxyClass(soa, jclass_loader, class_linker_, "$Proxy0", interfaces)); in TEST_F()
151 GenerateProxyClass(soa, jclass_loader, class_linker_, "$Proxy1", interfaces)); in TEST_F()
177 soa.Self(), &static_fields0->At(0), true)); in TEST_F()
180 soa.Self(), &static_fields0->At(1), true)); in TEST_F()
183 soa.Self(), &static_fields1->At(0), true)); in TEST_F()
186 soa.Self(), &static_fields1->At(1), true)); in TEST_F()