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

Method values

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

Source from the content-addressed store, hash-verified

2018 return self._symbol_cache.items()
2019
2020 def values(self) -> ValuesView[List['_types.CoreSymbol']]:
2021 if self._symbol_cache is None:
2022 self._build_symbol_cache()
2023 assert self._symbol_cache is not None
2024 return self._symbol_cache.values()
2025
2026 def get(self, key: str, default: Optional[List['_types.CoreSymbol']] = None) -> Optional[List['_types.CoreSymbol']]:
2027 try:

Callers

nothing calls this directly

Calls 2

_build_symbol_cacheMethod · 0.95
valuesMethod · 0.45

Tested by

no test coverage detected