| 56 | } |
| 57 | |
| 58 | bool ArtM::HasAccessFlag(char *art_method, uint32_t flag) { |
| 59 | uint32_t flags = GetAccessFlags(art_method); |
| 60 | return (flags & flag) == flag; |
| 61 | } |
| 62 | |
| 63 | bool ArtM::ClearFastNativeFlag(char *art_method) { |
| 64 | // FastNative |
nothing calls this directly
no outgoing calls
no test coverage detected