• Home
  • Raw
  • Download

Lines Matching refs:soa

38   ScopedFastNativeObjectAccess soa(env);  in Constructor_getExceptionTypes()  local
39 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod) in Constructor_getExceptionTypes()
47 Runtime::Current()->GetClassLinker()->FindArrayClass(soa.Self(), &class_class); in Constructor_getExceptionTypes()
52 mirror::ObjectArray<mirror::Class>::Alloc(soa.Self(), class_array_class, 0); in Constructor_getExceptionTypes()
53 return soa.AddLocalReference<jobjectArray>(empty_array); in Constructor_getExceptionTypes()
55 return soa.AddLocalReference<jobjectArray>(result_array); in Constructor_getExceptionTypes()
65 ScopedFastNativeObjectAccess soa(env); in Constructor_newInstance0() local
66 ObjPtr<mirror::Constructor> m = soa.Decode<mirror::Constructor>(javaMethod); in Constructor_newInstance0()
67 StackHandleScope<1> hs(soa.Self()); in Constructor_newInstance0()
70 soa.Self()->ThrowNewExceptionF("Ljava/lang/InstantiationException;", "Can't instantiate %s %s", in Constructor_newInstance0()
79 ObjPtr<mirror::Class> caller = GetCallingClass(soa.Self(), 2); in Constructor_newInstance0()
89 soa.Self()->ThrowNewExceptionF( in Constructor_newInstance0()
97 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(soa.Self(), c, true, true)) { in Constructor_newInstance0()
98 DCHECK(soa.Self()->IsExceptionPending()); in Constructor_newInstance0()
108 return InvokeMethod(soa, javaMethod, nullptr, javaArgs, 2); in Constructor_newInstance0()
112 movable ? c->AllocObject(soa.Self()) : c->AllocNonMovableObject(soa.Self()); in Constructor_newInstance0()
116 jobject javaReceiver = soa.AddLocalReference<jobject>(receiver); in Constructor_newInstance0()
117 InvokeMethod(soa, javaMethod, javaReceiver, javaArgs, 2); in Constructor_newInstance0()