| 39 | } |
| 40 | |
| 41 | bool ArtM::SetAccessFlags(char *art_method, uint32_t flags) { |
| 42 | *reinterpret_cast<uint32_t *>(art_method + GetArtMethodFlagsOffset()) = flags; |
| 43 | return true; |
| 44 | } |
| 45 | |
| 46 | bool ArtM::AddAccessFlag(char *art_method, uint32_t flag) { |
| 47 | uint32_t old_flag = GetAccessFlags(art_method); |
nothing calls this directly
no outgoing calls
no test coverage detected