Lines Matching refs:soa
39 ScopedFastNativeObjectAccess soa(env); in Method_getDefaultValue() local
40 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Method_getDefaultValue()
44 return soa.AddLocalReference<jobject>(annotations::GetAnnotationDefaultValue(method)); in Method_getDefaultValue()
48 ScopedFastNativeObjectAccess soa(env); in Method_getExceptionTypes() local
49 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Method_getExceptionTypes()
62 StackHandleScope<1u> hs(soa.Self()); in Method_getExceptionTypes()
65 return soa.AddLocalReference<jobjectArray>( in Method_getExceptionTypes()
66 mirror::ObjectArray<mirror::Class>::Clone(declared_exceptions, soa.Self())); in Method_getExceptionTypes()
75 mirror::ObjectArray<mirror::Class>::Alloc(soa.Self(), class_array_class, 0); in Method_getExceptionTypes()
76 return soa.AddLocalReference<jobjectArray>(empty_array); in Method_getExceptionTypes()
78 return soa.AddLocalReference<jobjectArray>(result_array); in Method_getExceptionTypes()
85 ScopedFastNativeObjectAccess soa(env); in Method_invoke() local
86 return InvokeMethod(soa, javaMethod, javaReceiver, javaArgs); in Method_invoke()