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

Method SetAutoHasVariableArguments

function.cpp:1081–1087  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1079
1080
1081void Function::SetAutoHasVariableArguments(const Confidence<bool>& varArgs)
1082{
1083 BNBoolWithConfidence bc;
1084 bc.value = varArgs.GetValue();
1085 bc.confidence = varArgs.GetConfidence();
1086 BNSetAutoFunctionHasVariableArguments(m_object, &bc);
1087}
1088
1089
1090void Function::SetAutoCanReturn(const Confidence<bool>& returns)

Callers

nothing calls this directly

Calls 2

GetConfidenceMethod · 0.80
GetValueMethod · 0.45

Tested by

no test coverage detected