Home
last modified time | relevance | path

Searched refs:javaMethod (Results 1 – 3 of 3) sorted by relevance

/art/runtime/native/
Djava_lang_reflect_Method.cc30 static jobject Method_invoke(JNIEnv* env, jobject javaMethod, jobject javaReceiver, in Method_invoke() argument
33 return InvokeMethod(soa, javaMethod, javaReceiver, javaArgs, (accessible == JNI_TRUE)); in Method_invoke()
36 static jobject Method_getExceptionTypesNative(JNIEnv* env, jobject javaMethod) { in Method_getExceptionTypesNative() argument
38 mirror::ArtMethod* proxy_method = mirror::ArtMethod::FromReflectedMethod(soa, javaMethod); in Method_getExceptionTypesNative()
Djava_lang_reflect_Constructor.cc36 static jobject Constructor_newInstance(JNIEnv* env, jobject javaMethod, jobjectArray javaArgs, in Constructor_newInstance() argument
39 mirror::ArtMethod* m = mirror::ArtMethod::FromReflectedMethod(soa, javaMethod); in Constructor_newInstance()
71 InvokeMethod(soa, javaMethod, javaReceiver, javaArgs, (accessible == JNI_TRUE)); in Constructor_newInstance()
/art/runtime/
Dreflection.cc519 jobject InvokeMethod(const ScopedObjectAccessAlreadyRunnable& soa, jobject javaMethod, in InvokeMethod() argument
530 mirror::ArtMethod* m = mirror::ArtMethod::FromReflectedMethod(soa, javaMethod); in InvokeMethod()