(self, ctxt, view, title, contents)
| 506 | core.BNRegisterInteractionHandler(self._cb) |
| 507 | |
| 508 | def _show_plain_text_report(self, ctxt, view, title, contents): |
| 509 | try: |
| 510 | if view: |
| 511 | view = binaryview.BinaryView(handle=core.BNNewViewReference(view)) |
| 512 | else: |
| 513 | view = None |
| 514 | self.show_plain_text_report(view, title, contents) |
| 515 | except: |
| 516 | log_error(traceback.format_exc()) |
| 517 | |
| 518 | def _show_markdown_report(self, ctxt, view, title, contents, plaintext): |
| 519 | try: |
nothing calls this directly
no test coverage detected