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

Method define_user_symbol

python/binaryview.py:6315–6324  ·  view source on GitHub ↗

``define_user_symbol`` adds a symbol to the internal list of user added Symbol objects. .. warning:: If multiple symbols for the same address are defined, only the most recent symbol will ever be used. :param Symbol sym: the symbol to define :rtype: None

(self, sym: '_types.CoreSymbol')

Source from the content-addressed store, hash-verified

6313 core.BNUndefineAutoSymbol(self.handle, sym.handle)
6314
6315 def define_user_symbol(self, sym: '_types.CoreSymbol') -> None:
6316 """
6317 ``define_user_symbol`` adds a symbol to the internal list of user added Symbol objects.
6318
6319 .. warning:: If multiple symbols for the same address are defined, only the most recent symbol will ever be used.
6320
6321 :param Symbol sym: the symbol to define
6322 :rtype: None
6323 """
6324 core.BNDefineUserSymbol(self.handle, sym.handle)
6325
6326 def undefine_user_symbol(self, sym: '_types.CoreSymbol') -> None:
6327 """

Callers 5

define_user_data_varMethod · 0.95
symbolMethod · 0.45
nameMethod · 0.45
propagate_var_nameFunction · 0.45
on_matched_functionFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected