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

Method undefine_user_symbol

python/binaryview.py:6326–6333  ·  view source on GitHub ↗

``undefine_user_symbol`` removes a symbol from the internal list of user added Symbol objects. :param sym: the symbol to undefine :rtype: None

(self, sym: '_types.CoreSymbol')

Source from the content-addressed store, hash-verified

6324 core.BNDefineUserSymbol(self.handle, sym.handle)
6325
6326 def undefine_user_symbol(self, sym: '_types.CoreSymbol') -> None:
6327 """
6328 ``undefine_user_symbol`` removes a symbol from the internal list of user added Symbol objects.
6329
6330 :param sym: the symbol to undefine
6331 :rtype: None
6332 """
6333 core.BNUndefineUserSymbol(self.handle, sym.handle)
6334
6335 def define_imported_function(
6336 self, import_addr_sym: '_types.CoreSymbol', func: '_function.Function', type: Optional['_types.Type'] = None

Callers 2

symbolMethod · 0.45
nameMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected