| 61 | } |
| 62 | |
| 63 | bool ArtM::ClearFastNativeFlag(char *art_method) { |
| 64 | // FastNative |
| 65 | return ArtMethodEnv.api_level < __ANDROID_API_P__ && |
| 66 | ClearAccessFlag(art_method, kAccFastNative); |
| 67 | } |
| 68 | |
| 69 | void *ArtM::GetArtMethod(JNIEnv *env, jclass clazz, jmethodID methodId) { |
| 70 | if (ArtMethodEnv.api_level >= __ANDROID_API_Q__) { |
nothing calls this directly
no outgoing calls
no test coverage detected