| 35 | } |
| 36 | |
| 37 | uint32_t ArtM::GetAccessFlags(const char *art_method) { |
| 38 | return *reinterpret_cast<const uint32_t *>(art_method + GetArtMethodFlagsOffset()); |
| 39 | } |
| 40 | |
| 41 | bool ArtM::SetAccessFlags(char *art_method, uint32_t flags) { |
| 42 | *reinterpret_cast<uint32_t *>(art_method + GetArtMethodFlagsOffset()) = flags; |
nothing calls this directly
no outgoing calls
no test coverage detected