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

Method SetHasVariableArguments

function.cpp:1210–1216  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1208
1209
1210void Function::SetHasVariableArguments(const Confidence<bool>& varArgs)
1211{
1212 BNBoolWithConfidence bc;
1213 bc.value = varArgs.GetValue();
1214 bc.confidence = varArgs.GetConfidence();
1215 BNSetUserFunctionHasVariableArguments(m_object, &bc);
1216}
1217
1218
1219void Function::SetCanReturn(const Confidence<bool>& returns)

Callers 1

ApplySymbolFunction · 0.80

Calls 2

GetConfidenceMethod · 0.80
GetValueMethod · 0.45

Tested by

no test coverage detected