Searched refs:javaMethod (Results 1 – 3 of 3) sorted by relevance
/art/runtime/native/ |
D | java_lang_reflect_Method.cc | 31 static jobject Method_invoke(JNIEnv* env, jobject javaMethod, jobject javaReceiver, in Method_invoke() argument 34 return InvokeMethod(soa, javaMethod, javaReceiver, javaArgs); in Method_invoke() 37 static jobject Method_getExceptionTypesNative(JNIEnv* env, jobject javaMethod) { in Method_getExceptionTypesNative() argument 39 ArtMethod* proxy_method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Method_getExceptionTypesNative()
|
D | java_lang_reflect_Constructor.cc | 36 static jobject Constructor_newInstance(JNIEnv* env, jobject javaMethod, jobjectArray javaArgs) { in Constructor_newInstance() argument 38 mirror::Constructor* m = soa.Decode<mirror::Constructor*>(javaMethod); in Constructor_newInstance() 77 return InvokeMethod(soa, javaMethod, nullptr, javaArgs, 1); in Constructor_newInstance() 86 InvokeMethod(soa, javaMethod, javaReceiver, javaArgs, 1); in Constructor_newInstance()
|
/art/runtime/ |
D | reflection.cc | 560 jobject InvokeMethod(const ScopedObjectAccessAlreadyRunnable& soa, jobject javaMethod, in InvokeMethod() argument 571 auto* abstract_method = soa.Decode<mirror::AbstractMethod*>(javaMethod); in InvokeMethod()
|