MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / breakpoint_delete

Method breakpoint_delete

python/workflow.py:708–715  ·  view source on GitHub ↗
(self, activities)

Source from the content-addressed store, hash-verified

706 return json.loads(core.BNPostWorkflowRequestForBinaryView(self.handle, request))
707
708 def breakpoint_delete(self, activities):
709 if isinstance(activities, str):
710 activities = [activities]
711 request = json.dumps({"command": "breakpoint", "action": "delete", "activities": activities})
712 if self.is_function_machine:
713 return json.loads(core.BNPostWorkflowRequestForFunction(self.handle, request))
714 else:
715 return json.loads(core.BNPostWorkflowRequestForBinaryView(self.handle, request))
716
717 def breakpoint_query(self):
718 request = json.dumps({"command": "breakpoint", "action": "query"})

Callers 1

do_breakpointMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected