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

Method SetAutoInlinedDuringAnalysis

function.cpp:3307–3313  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3305
3306
3307void Function::SetAutoInlinedDuringAnalysis(Confidence<bool> inlined)
3308{
3309 BNBoolWithConfidence bc;
3310 bc.value = inlined.GetValue();
3311 bc.confidence = inlined.GetConfidence();
3312 BNSetAutoFunctionInlinedDuringAnalysis(m_object, bc);
3313}
3314
3315
3316void Function::SetUserInlinedDuringAnalysis(Confidence<bool> inlined)

Callers 3

AnalyzeStubFunctionFunction · 0.80
RecognizeLowLevelILMethod · 0.80
RecognizeLowLevelILMethod · 0.80

Calls 2

GetConfidenceMethod · 0.80
GetValueMethod · 0.45

Tested by

no test coverage detected