(cls, handle)
| 2343 | |
| 2344 | @classmethod |
| 2345 | def _from_cache(cls, handle) -> 'Architecture': |
| 2346 | global _architecture_cache |
| 2347 | return _architecture_cache.get(ctypes.addressof(handle.contents)) or cls(handle) |
| 2348 | |
| 2349 | def get_associated_arch_by_address(self, addr: int) -> Tuple['Architecture', int]: |
| 2350 | new_addr = ctypes.c_ulonglong() |
no test coverage detected