(self, ctxt, result, prompt, title, view, current_address)
| 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: |
nothing calls this directly
no test coverage detected