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

Class CacheSymbol

view/sharedcache/api/python/sharedcache.py:41–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39
40@dataclasses.dataclass
41class CacheSymbol:
42 symbol_type: sccore.SymbolTypeEnum
43 address: int
44 name: str
45
46 def __str__(self):
47 return repr(self)
48
49 def __repr__(self):
50 return f"<CacheSymbol '{self.name}': 0x{self.address:x}>"
51
52def region_from_api(region: sccore.BNSharedCacheRegion) -> CacheRegion:
53 return CacheRegion(

Callers 1

symbol_from_apiFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected