/aosp12/art/runtime/native/ |
H A D | java_lang_reflect_Executable.cc | 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() 72 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getSignatureAnnotation() 82 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getParameterAnnotationsNative() 256 jobject javaMethod, in Executable_isAnnotationPresentNative() argument 259 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_isAnnotationPresentNative() 323 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getMethodNameInternal() 330 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getMethodReturnTypeInternal() 343 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getParameterTypesInternal() [all …]
|
H A D | java_lang_reflect_Method.cc | 38 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<kRuntimePointerSize>(soa, javaMethod, javaReceiver, javaArgs); in Method_invoke()
|
H A D | java_lang_reflect_Constructor.cc | 40 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<kRuntimePointerSize>(soa, javaMethod, nullptr, javaArgs, 2); in Constructor_newInstance0()
|
H A D | java_lang_reflect_Parameter.cc | 37 jobject javaMethod, in Parameter_getAnnotationNative() argument 41 if (UNLIKELY(javaMethod == nullptr)) { in Parameter_getAnnotationNative() 46 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Parameter_getAnnotationNative()
|
/aosp12/art/test/708-jit-cache-churn/ |
H A D | jit.cc | 34 jobject javaMethod, in Java_JitCacheChurnTest_removeJitCompiledMethod() argument 44 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Java_JitCacheChurnTest_removeJitCompiledMethod()
|
/aosp12/frameworks/base/core/jni/ |
H A D | android_os_VintfRuntimeInfo.cpp | 32 #define MAP_STRING_METHOD(javaMethod, cppString, flags) \ argument 33 static jstring android_os_VintfRuntimeInfo_##javaMethod(JNIEnv* env, jclass clazz) { \
|
/aosp12/art/test/616-cha-unloading/src-art/ |
H A D | Main.java | 119 private static native long getArtMethod(Object javaMethod); in getArtMethod() argument
|
/aosp12/art/runtime/ |
H A D | reflection.cc | 695 jobject InvokeMethod(const ScopedObjectAccessAlreadyRunnable& soa, jobject javaMethod, in InvokeMethod() argument 706 ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(javaMethod); in InvokeMethod() 778 jobject javaMethod, 784 jobject javaMethod,
|