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

Method items

python/binaryview.py:2014–2018  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2012 return self._symbol_cache.keys()
2013
2014 def items(self) -> ItemsView[str, List['_types.CoreSymbol']]:
2015 if self._symbol_cache is None:
2016 self._build_symbol_cache()
2017 assert self._symbol_cache is not None
2018 return self._symbol_cache.items()
2019
2020 def values(self) -> ValuesView[List['_types.CoreSymbol']]:
2021 if self._symbol_cache is None:

Callers

nothing calls this directly

Calls 2

_build_symbol_cacheMethod · 0.95
itemsMethod · 0.45

Tested by

no test coverage detected