| 831 | |
| 832 | |
| 833 | bool BNDebuggerContainsRelativeBreakpoint(BNDebuggerController* controller, const char* module, uint64_t offset) |
| 834 | { |
| 835 | DebuggerState* state = controller->object->GetState(); |
| 836 | if (!state) |
| 837 | return false; |
| 838 | |
| 839 | DebuggerBreakpoints* breakpoints = state->GetBreakpoints(); |
| 840 | if (!breakpoints) |
| 841 | return false; |
| 842 | |
| 843 | return breakpoints->ContainsOffset(ModuleNameAndOffset(module, offset)); |
| 844 | } |
| 845 | |
| 846 | |
| 847 | uint64_t BNDebuggerRelativeAddressToAbsolute(BNDebuggerController* controller, const char* module, uint64_t offset) |
no test coverage detected