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

Function show_graph_report

python/interaction.py:1112–1128  ·  view source on GitHub ↗

``show_graph_report`` displays a flow graph in UI applications and nothing in command-line applications. \ This API doesn't support clickable references into an existing BinaryView. Use the :py:meth:`BinaryView.show_html_report` \ API if hyperlinking is needed. .. note:: This API function will

(title, graph)

Source from the content-addressed store, hash-verified

1110
1111
1112def show_graph_report(title, graph):
1113 """
1114 ``show_graph_report`` displays a flow graph in UI applications and nothing in command-line applications. \
1115 This API doesn't support clickable references into an existing BinaryView. Use the :py:meth:`BinaryView.show_html_report` \
1116 API if hyperlinking is needed.
1117
1118 .. note:: This API function will have no effect outside the UI.
1119
1120 :param str title: Title to display in the tab
1121 :param FlowGraph graph: Flow graph to display
1122 :rtype: None
1123 """
1124 func = graph.function
1125 if func is None:
1126 core.BNShowGraphReport(None, title, graph.handle)
1127 else:
1128 core.BNShowGraphReport(func.view.handle, title, graph.handle)
1129
1130
1131def show_report_collection(title, reports):

Callers 4

show_llil_hierarchyMethod · 0.85
show_hierarchy_graphMethod · 0.85
show_hlil_hierarchyMethod · 0.85
show_mlil_hierarchyMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected