MCPcopy Create free account
hub / github.com/Vector35/debugger / breakpoints

Method breakpoints

api/python/debuggercontroller.py:1191–1203  ·  view source on GitHub ↗

The list of breakpoints

(self)

Source from the content-addressed store, hash-verified

1189
1190 @property
1191 def breakpoints(self) -> List[DebugBreakpoint]:
1192 """
1193 The list of breakpoints
1194 """
1195 count = ctypes.c_ulonglong()
1196 breakpoints = dbgcore.BNDebuggerGetBreakpoints(self.handle, count)
1197 result = []
1198 for i in range(0, count.value):
1199 bp = DebugBreakpoint(breakpoints[i].module, breakpoints[i].offset, breakpoints[i].address, breakpoints[i].enabled)
1200 result.append(bp)
1201
1202 dbgcore.BNDebuggerFreeBreakpoints(breakpoints, count.value)
1203 return result
1204
1205 def delete_breakpoint(self, address):
1206 """

Callers

nothing calls this directly

Calls 1

DebugBreakpointClass · 0.70

Tested by

no test coverage detected