MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / FunctionExistsWithStartingAddress

Method FunctionExistsWithStartingAddress

pcsx2/DebugTools/SymbolGuardian.cpp:100–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98}
99
100bool SymbolGuardian::FunctionExistsWithStartingAddress(u32 address) const
101{
102 bool exists = false;
103 Read([&](const ccc::SymbolDatabase& database) {
104 ccc::FunctionHandle handle = database.functions.first_handle_from_starting_address(address);
105 exists = handle.valid();
106 });
107 return exists;
108}
109
110bool SymbolGuardian::FunctionExistsThatOverlapsAddress(u32 address) const
111{

Callers 1

openContextMenuMethod · 0.80

Calls 3

ReadFunction · 0.50
validMethod · 0.45

Tested by

no test coverage detected