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

Method GetAnalysisFunction

binaryview.cpp:2292–2300  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2290
2291
2292Ref<Function> BinaryView::GetAnalysisFunction(Platform* platform, uint64_t addr)
2293{
2294 if (!platform)
2295 return nullptr;
2296 BNFunction* func = BNGetAnalysisFunction(m_object, platform->GetObject(), addr);
2297 if (!func)
2298 return nullptr;
2299 return new Function(func);
2300}
2301
2302
2303Ref<Function> BinaryView::GetRecentAnalysisFunctionForAddress(uint64_t addr)

Callers 5

DefineObjCSymbolMethod · 0.80
ApplySymbolFunction · 0.80
IdentifyStubFunction · 0.80
FunctionInlinerFunction · 0.80
TailCallTranslationFunction · 0.80

Calls 1

GetObjectMethod · 0.45

Tested by

no test coverage detected