(self)
| 10632 | return |
| 10633 | |
| 10634 | def close(self) -> None: |
| 10635 | self.__local_root_fd.cleanup() |
| 10636 | try: |
| 10637 | gef_on_new_unhook(self.remote_objfile_event_handler) |
| 10638 | gef_on_new_hook(new_objfile_handler) |
| 10639 | except Exception as e: |
| 10640 | warn(f"Exception while restoring local context: {str(e)}") |
| 10641 | return |
| 10642 | |
| 10643 | def in_qemu_user(self) -> bool: |
| 10644 | return self.__qemu is not None |
no test coverage detected