Home
last modified time | relevance | path

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

/art/runtime/native/
Djava_lang_reflect_Method.cc38 static jobject Method_getDefaultValue(JNIEnv* env, jobject javaMethod) { in Method_getDefaultValue() argument
40 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Method_getDefaultValue()
47 static jobjectArray Method_getExceptionTypes(JNIEnv* env, jobject javaMethod) { in Method_getExceptionTypes() argument
49 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Method_getExceptionTypes()
83 static jobject Method_invoke(JNIEnv* env, jobject javaMethod, jobject javaReceiver, in Method_invoke() argument
86 return InvokeMethod(soa, javaMethod, javaReceiver, javaArgs); in Method_invoke()
Djava_lang_reflect_Executable.cc42 static jobjectArray Executable_getDeclaredAnnotationsNative(JNIEnv* env, jobject javaMethod) { in Executable_getDeclaredAnnotationsNative() argument
44 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getDeclaredAnnotationsNative()
57 jobject javaMethod, in Executable_getAnnotationNative() argument
61 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getAnnotationNative()
70 static jobjectArray Executable_getSignatureAnnotation(JNIEnv* env, jobject javaMethod) { in Executable_getSignatureAnnotation() argument
72 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getSignatureAnnotation()
80 static jobjectArray Executable_getParameterAnnotationsNative(JNIEnv* env, jobject javaMethod) { in Executable_getParameterAnnotationsNative() argument
82 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getParameterAnnotationsNative()
157 static jobjectArray Executable_getParameters0(JNIEnv* env, jobject javaMethod) { in Executable_getParameters0() argument
162 Handle<mirror::Method> executable = hs.NewHandle(soa.Decode<mirror::Method>(javaMethod)); in Executable_getParameters0()
[all …]
Djava_lang_reflect_Constructor.cc40 static jobjectArray Constructor_getExceptionTypes(JNIEnv* env, jobject javaMethod) { in Constructor_getExceptionTypes() argument
42 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod) in Constructor_getExceptionTypes()
63 static jobject Constructor_newInstance0(JNIEnv* env, jobject javaMethod, jobjectArray javaArgs) { in Constructor_newInstance0() argument
65 ObjPtr<mirror::Constructor> m = soa.Decode<mirror::Constructor>(javaMethod); in Constructor_newInstance0()
108 return InvokeMethod(soa, javaMethod, nullptr, javaArgs, 2); in Constructor_newInstance0()
Djava_lang_reflect_Parameter.cc37 jobject javaMethod, in Parameter_getAnnotationNative() argument
41 if (UNLIKELY(javaMethod == nullptr)) { in Parameter_getAnnotationNative()
46 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Parameter_getAnnotationNative()
/art/test/708-jit-cache-churn/
Djit.cc34 jobject javaMethod, in Java_JitCacheChurnTest_removeJitCompiledMethod() argument
44 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Java_JitCacheChurnTest_removeJitCompiledMethod()
/art/test/616-cha-unloading/src-art/
DMain.java119 private static native long getArtMethod(Object javaMethod); in getArtMethod() argument
/art/runtime/
Dreflection.cc686 jobject InvokeMethod(const ScopedObjectAccessAlreadyRunnable& soa, jobject javaMethod, in InvokeMethod() argument
697 ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(javaMethod); in InvokeMethod()