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

Method override_clear

python/workflow.py:740–745  ·  view source on GitHub ↗
(self, activity)

Source from the content-addressed store, hash-verified

738 return json.loads(core.BNPostWorkflowRequestForBinaryView(self.handle, request))
739
740 def override_clear(self, activity):
741 request = json.dumps({"command": "override", "action": "clear", "activity": activity})
742 if self.is_function_machine:
743 return json.loads(core.BNPostWorkflowRequestForFunction(self.handle, request))
744 else:
745 return json.loads(core.BNPostWorkflowRequestForBinaryView(self.handle, request))
746
747 def override_query(self, activity = None):
748 if activity is None:

Callers 1

do_overrideMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected