MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / FindHookEntry

Method FindHookEntry

Bcore/src/main/cpp/Dobby/source/Interceptor.cpp:35–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33}
34
35HookEntry *Interceptor::FindHookEntry(void *address) {
36 HookEntryNode *entry_node = nullptr;
37 entry_node = find_hook_entry_node(address);
38 if (entry_node) {
39 return entry_node->entry;
40 }
41
42 return nullptr;
43}
44
45void Interceptor::AddHookEntry(HookEntry *entry) {
46 HookEntryNode *entry_node = new HookEntryNode;

Callers 3

DobbyDestroyFunction · 0.80
DobbyHookFunction · 0.80
DobbyInstrumentFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected