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

Method configure

python/workflow.py:645–650  ·  view source on GitHub ↗
(self, advanced: bool = True, incremental: bool = False)

Source from the content-addressed store, hash-verified

643 return json.loads(core.BNPostWorkflowRequestForBinaryView(self.handle, request))
644
645 def configure(self, advanced: bool = True, incremental: bool = False):
646 request = json.dumps({"command": "configure", "advanced": advanced, "incremental": incremental})
647 if self.is_function_machine:
648 return json.loads(core.BNPostWorkflowRequestForFunction(self.handle, request))
649 else:
650 return json.loads(core.BNPostWorkflowRequestForBinaryView(self.handle, request))
651
652 def resume(self):
653 request = json.dumps({"command": "run"})

Callers 3

runMethod · 0.95
do_configureMethod · 0.80
connect_vscode_debuggerFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected