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

Method to_BNVariable

python/variable.py:681–686  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

679 return VariableSourceType(self._source_type)
680
681 def to_BNVariable(self):
682 v = core.BNVariable()
683 v.type = self._source_type
684 v.index = self.index
685 v.storage = self.storage
686 return v
687
688 @classmethod
689 def from_BNVariable(cls, var: core.BNVariable):

Callers 15

identifierMethod · 0.95
append_var_text_tokenMethod · 0.80
create_auto_varMethod · 0.80
create_user_varMethod · 0.80
delete_user_varMethod · 0.80
is_var_user_definedMethod · 0.80
set_user_var_valueMethod · 0.80
clear_user_var_valueMethod · 0.80
get_mlil_var_refsMethod · 0.80
get_hlil_var_refsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected