(self, ctxt, view, title, contents, plaintext)
| 526 | log_error(traceback.format_exc()) |
| 527 | |
| 528 | def _show_html_report(self, ctxt, view, title, contents, plaintext): |
| 529 | try: |
| 530 | if view: |
| 531 | view = binaryview.BinaryView(handle=core.BNNewViewReference(view)) |
| 532 | else: |
| 533 | view = None |
| 534 | self.show_html_report(view, title, contents, plaintext) |
| 535 | except: |
| 536 | log_error(traceback.format_exc()) |
| 537 | |
| 538 | def _show_graph_report(self, ctxt, view, title, graph): |
| 539 | try: |
nothing calls this directly
no test coverage detected