| 44 | } |
| 45 | |
| 46 | bool ArtM::AddAccessFlag(char *art_method, uint32_t flag) { |
| 47 | uint32_t old_flag = GetAccessFlags(art_method); |
| 48 | uint32_t new_flag = old_flag | flag; |
| 49 | return new_flag != old_flag && SetAccessFlags(art_method, new_flag); |
| 50 | } |
| 51 | |
| 52 | bool ArtM::ClearAccessFlag(char *art_method, uint32_t flag) { |
| 53 | uint32_t old_flag = GetAccessFlags(art_method); |
nothing calls this directly
no outgoing calls
no test coverage detected