Get the architecture of the running target (read-only). This could be different from the architecture of the original binary.
(self)
| 559 | |
| 560 | @property |
| 561 | def remote_arch(self) -> binaryninja.Architecture: |
| 562 | """ |
| 563 | Get the architecture of the running target (read-only). This could be different from the architecture of the original binary. |
| 564 | """ |
| 565 | result = dbgcore.BNDebuggerGetRemoteArchitecture(self.handle) |
| 566 | if result is None: |
| 567 | return None |
| 568 | result = ctypes.cast(result, ctypes.POINTER(binaryninja.core.BNArchitecture)) |
| 569 | if result is None: |
| 570 | return None |
| 571 | return binaryninja.CoreArchitecture(handle=result) |
| 572 | |
| 573 | @property |
| 574 | def connected(self) -> bool: |
nothing calls this directly
no outgoing calls
no test coverage detected