| 50 | } |
| 51 | |
| 52 | bool ArtM::ClearAccessFlag(char *art_method, uint32_t flag) { |
| 53 | uint32_t old_flag = GetAccessFlags(art_method); |
| 54 | uint32_t new_flag = old_flag & ~flag; |
| 55 | return new_flag != old_flag && SetAccessFlags(art_method, new_flag); |
| 56 | } |
| 57 | |
| 58 | bool ArtM::HasAccessFlag(char *art_method, uint32_t flag) { |
| 59 | uint32_t flags = GetAccessFlags(art_method); |
nothing calls this directly
no outgoing calls
no test coverage detected