(self, ctxt, view, title, graph)
| 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: |
nothing calls this directly
no test coverage detected