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

Method _show_plain_text_report

python/interaction.py:508–516  ·  view source on GitHub ↗
(self, ctxt, view, title, contents)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls 3

log_errorFunction · 0.85
BinaryViewMethod · 0.80

Tested by

no test coverage detected