``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)
| 1110 | |
| 1111 | |
| 1112 | def 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 | |
| 1131 | def show_report_collection(title, reports): |
no outgoing calls
no test coverage detected