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

Method _get_save_filename_input

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

Source from the content-addressed store, hash-verified

622 log_error(traceback.format_exc())
623
624 def _get_save_filename_input(self, ctxt, result, prompt, ext, default_name):
625 try:
626 value = self.get_save_filename_input(prompt, ext, default_name)
627 if value is None:
628 return False
629 result[0] = core.BNAllocString(str(value))
630 return True
631 except:
632 log_error(traceback.format_exc())
633
634 def _get_directory_name_input(self, ctxt, result, prompt, default_name):
635 try:

Callers

nothing calls this directly

Calls 2

log_errorFunction · 0.85

Tested by

no test coverage detected