| 765 | |
| 766 | |
| 767 | void BNDebuggerFreeBreakpoints(BNDebugBreakpoint* breakpoints, size_t count) |
| 768 | { |
| 769 | for (size_t i = 0; i < count; i++) |
| 770 | { |
| 771 | BNDebuggerFreeString(breakpoints[i].module); |
| 772 | } |
| 773 | delete[] breakpoints; |
| 774 | } |
| 775 | |
| 776 | |
| 777 | void BNDebuggerDeleteAbsoluteBreakpoint(BNDebuggerController* controller, uint64_t address) |
no test coverage detected