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

Method breakpoint_query

python/workflow.py:717–722  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

715 return json.loads(core.BNPostWorkflowRequestForBinaryView(self.handle, request))
716
717 def breakpoint_query(self):
718 request = json.dumps({"command": "breakpoint", "action": "query"})
719 if self.is_function_machine:
720 return json.loads(core.BNPostWorkflowRequestForFunction(self.handle, request))
721 else:
722 return json.loads(core.BNPostWorkflowRequestForBinaryView(self.handle, request))
723
724 def breakpoint_set(self, activities):
725 if isinstance(activities, str):

Callers 1

do_breakpointMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected