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

Method _get_address_input

python/interaction.py:574–586  ·  view source on GitHub ↗
(self, ctxt, result, prompt, title, view, current_address)

Source from the content-addressed store, hash-verified

572 log_error(traceback.format_exc())
573
574 def _get_address_input(self, ctxt, result, prompt, title, view, current_address):
575 try:
576 if view:
577 view = binaryview.BinaryView(handle=core.BNNewViewReference(view))
578 else:
579 view = None
580 value = self.get_address_input(prompt, title, view, current_address)
581 if value is None:
582 return False
583 result[0] = value
584 return True
585 except:
586 log_error(traceback.format_exc())
587
588 def _get_choice_input(self, ctxt, result, prompt, title, choice_buf, count):
589 try:

Callers

nothing calls this directly

Calls 3

get_address_inputMethod · 0.95
log_errorFunction · 0.85
BinaryViewMethod · 0.80

Tested by

no test coverage detected