Lines Matching refs:soa
37 ScopedFastNativeObjectAccess soa(env); in Constructor_newInstance() local
38 mirror::Constructor* m = soa.Decode<mirror::Constructor*>(javaMethod); in Constructor_newInstance()
39 StackHandleScope<1> hs(soa.Self()); in Constructor_newInstance()
42 soa.Self()->ThrowNewExceptionF("Ljava/lang/InstantiationException;", "Can't instantiate %s %s", in Constructor_newInstance()
49 auto* caller = GetCallingClass(soa.Self(), 1); in Constructor_newInstance()
59 soa.Self()->ThrowNewExceptionF( in Constructor_newInstance()
66 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(soa.Self(), c, true, true)) { in Constructor_newInstance()
67 DCHECK(soa.Self()->IsExceptionPending()); in Constructor_newInstance()
77 return InvokeMethod(soa, javaMethod, nullptr, javaArgs, 1); in Constructor_newInstance()
81 movable ? c->AllocObject(soa.Self()) : c->AllocNonMovableObject(soa.Self()); in Constructor_newInstance()
85 jobject javaReceiver = soa.AddLocalReference<jobject>(receiver); in Constructor_newInstance()
86 InvokeMethod(soa, javaMethod, javaReceiver, javaArgs, 1); in Constructor_newInstance()