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

Method _get_large_choice_input

python/interaction.py:601–612  ·  view source on GitHub ↗
(self, ctxt, result, prompt, title, choice_buf, count)

Source from the content-addressed store, hash-verified

599 log_error(traceback.format_exc())
600
601 def _get_large_choice_input(self, ctxt, result, prompt, title, choice_buf, count):
602 try:
603 choices = []
604 for i in range(0, count):
605 choices.append(choice_buf[i])
606 value = self.get_large_choice_input(prompt, title, choices)
607 if value is None:
608 return False
609 result[0] = value
610 return True
611 except:
612 log_error(traceback.format_exc())
613
614 def _get_open_filename_input(self, ctxt, result, prompt, ext):
615 try:

Callers

nothing calls this directly

Calls 3

log_errorFunction · 0.85
appendMethod · 0.45

Tested by

no test coverage detected