| 50 | } |
| 51 | |
| 52 | void Interceptor::RemoveHookEntry(void *address) { |
| 53 | if (HookEntryNode *entry_node = find_hook_entry_node(address)) { |
| 54 | list_del(&entry_node->list_node); |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | int Interceptor::GetHookEntryCount() { |
| 59 | int count = 0; |
no test coverage detected