| 817 | |
| 818 | |
| 819 | bool BNDebuggerContainsAbsoluteBreakpoint(BNDebuggerController* controller, uint64_t address) |
| 820 | { |
| 821 | DebuggerState* state = controller->object->GetState(); |
| 822 | if (!state) |
| 823 | return false; |
| 824 | |
| 825 | DebuggerBreakpoints* breakpoints = state->GetBreakpoints(); |
| 826 | if (!breakpoints) |
| 827 | return false; |
| 828 | |
| 829 | return breakpoints->ContainsAbsolute(address); |
| 830 | } |
| 831 | |
| 832 | |
| 833 | bool BNDebuggerContainsRelativeBreakpoint(BNDebuggerController* controller, const char* module, uint64_t offset) |
no test coverage detected