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

Method _from_cache

python/architecture.py:2345–2347  ·  view source on GitHub ↗
(cls, handle)

Source from the content-addressed store, hash-verified

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()

Callers 5

__iter__Method · 0.45
__getitem__Method · 0.45
standalone_platformMethod · 0.45
get_instruction_infoMethod · 0.45

Calls 1

getMethod · 0.45

Tested by

no test coverage detected