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

Method metrics

python/workflow.py:631–636  ·  view source on GitHub ↗
(self, enable: bool = True, is_global: bool = False)

Source from the content-addressed store, hash-verified

629 return json.loads(core.BNPostWorkflowRequestForBinaryView(self.handle, request))
630
631 def metrics(self, enable: bool = True, is_global: bool = False):
632 request = json.dumps({"command": "metrics", "enable": enable, "global": is_global})
633 if self.is_function_machine:
634 return json.loads(core.BNPostWorkflowRequestForFunction(self.handle, request))
635 else:
636 return json.loads(core.BNPostWorkflowRequestForBinaryView(self.handle, request))
637
638 def dump(self):
639 request = json.dumps({"command": "dump"})

Callers 1

do_metricsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected