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

Method _get_open_filename_input

python/interaction.py:614–622  ·  view source on GitHub ↗
(self, ctxt, result, prompt, ext)

Source from the content-addressed store, hash-verified

612 log_error(traceback.format_exc())
613
614 def _get_open_filename_input(self, ctxt, result, prompt, ext):
615 try:
616 value = self.get_open_filename_input(prompt, ext)
617 if value is None:
618 return False
619 result[0] = core.BNAllocString(str(value))
620 return True
621 except:
622 log_error(traceback.format_exc())
623
624 def _get_save_filename_input(self, ctxt, result, prompt, ext, default_name):
625 try:

Callers

nothing calls this directly

Calls 2

log_errorFunction · 0.85

Tested by

no test coverage detected