| 32 | } |
| 33 | |
| 34 | static const char *GetMethodName(JNIEnv *env, jobject javaMethod) { |
| 35 | auto desc = reinterpret_cast<jstring>(env->CallStaticObjectMethod(HookEnv.method_utils_class, |
| 36 | HookEnv.get_method_name_id, |
| 37 | javaMethod)); |
| 38 | return env->GetStringUTFChars(desc, JNI_FALSE); |
| 39 | } |
| 40 | |
| 41 | bool CheckFlags(void *artMethod) { |
| 42 | char *method = static_cast<char *>(artMethod); |
no outgoing calls
no test coverage detected