| 25 | } |
| 26 | |
| 27 | static const char *GetMethodDeclaringClass(JNIEnv *env, jobject javaMethod) { |
| 28 | auto desc = reinterpret_cast<jstring>(env->CallStaticObjectMethod(HookEnv.method_utils_class, |
| 29 | HookEnv.get_method_declaring_class_id, |
| 30 | javaMethod)); |
| 31 | return env->GetStringUTFChars(desc, JNI_FALSE); |
| 32 | } |
| 33 | |
| 34 | static const char *GetMethodName(JNIEnv *env, jobject javaMethod) { |
| 35 | auto desc = reinterpret_cast<jstring>(env->CallStaticObjectMethod(HookEnv.method_utils_class, |