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

Method symbol

python/function.py:595–599  ·  view source on GitHub ↗

Function symbol(read-only)

(self)

Source from the content-addressed store, hash-verified

593
594 @property
595 def symbol(self) -> 'types.CoreSymbol':
596 """Function symbol(read-only)"""
597 sym = core.BNGetFunctionSymbol(self.handle)
598 assert sym is not None, "core.BNGetFunctionSymbol returned None"
599 return types.CoreSymbol(sym)
600
601 @property
602 def auto(self) -> bool:

Callers 6

export_functionsFunction · 0.45
on_matched_functionFunction · 0.45
build_functionFunction · 0.45
function_constraintMethod · 0.45
actionMethod · 0.45
data_from_viewFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected