Home
last modified time | relevance | path

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

/art/runtime/native/
Djava_lang_reflect_Method.cc33 jobject javaMethod, jobject javaReceiver, jobject javaArgs) { in Method_invoke() argument
35 return InvokeMethod(soa, javaMethod, javaReceiver, javaArgs); in Method_invoke()
38 static jobject Method_getExceptionTypesNative(JNIEnv* env, jobject javaMethod) { in Method_getExceptionTypesNative() argument
41 javaMethod, WellKnownClasses::java_lang_reflect_AbstractMethod_artMethod); in Method_getExceptionTypesNative()
Djava_lang_reflect_Constructor.cc37 static jobject Constructor_newInstance(JNIEnv* env, jobject javaMethod, jobjectArray javaArgs) { in Constructor_newInstance() argument
40 javaMethod, WellKnownClasses::java_lang_reflect_AbstractMethod_artMethod); in Constructor_newInstance()
64 InvokeMethod(soa, javaMethod, javaReceiver, javaArgs); in Constructor_newInstance()
/art/runtime/
Dreflection.cc36 jobject InvokeMethod(const ScopedObjectAccess& soa, jobject javaMethod, jobject javaReceiver, in InvokeMethod() argument
38 jmethodID mid = soa.Env()->FromReflectedMethod(javaMethod); in InvokeMethod()