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

Method parameter_vars

python/function.py:1396–1404  ·  view source on GitHub ↗

List of variables for the incoming function parameters

(self)

Source from the content-addressed store, hash-verified

1394
1395 @property
1396 def parameter_vars(self) -> 'variable.ParameterVariables':
1397 """List of variables for the incoming function parameters"""
1398 result = core.BNGetFunctionParameterVariables(self.handle)
1399 var_list = []
1400 for i in range(0, result.count):
1401 var_list.append(variable.Variable.from_BNVariable(self, result.vars[i]))
1402 confidence = result.confidence
1403 core.BNFreeParameterVariables(result)
1404 return variable.ParameterVariables(var_list, confidence, self)
1405
1406 @parameter_vars.setter
1407 def parameter_vars(

Callers

nothing calls this directly

Calls 2

appendMethod · 0.45
from_BNVariableMethod · 0.45

Tested by

no test coverage detected