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

Method _show_graph_report

python/interaction.py:538–546  ·  view source on GitHub ↗
(self, ctxt, view, title, graph)

Source from the content-addressed store, hash-verified

536 log_error(traceback.format_exc())
537
538 def _show_graph_report(self, ctxt, view, title, graph):
539 try:
540 if view:
541 view = binaryview.BinaryView(handle=core.BNNewViewReference(view))
542 else:
543 view = None
544 self.show_graph_report(view, title, flowgraph.CoreFlowGraph(core.BNNewFlowGraphReference(graph)))
545 except:
546 log_error(traceback.format_exc())
547
548 def _show_report_collection(self, ctxt, title, reports):
549 try:

Callers

nothing calls this directly

Calls 4

show_graph_reportMethod · 0.95
log_errorFunction · 0.85
BinaryViewMethod · 0.80
CoreFlowGraphMethod · 0.80

Tested by

no test coverage detected