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

Method AddFunctionForAnalysis

binaryview.cpp:2092–2099  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2090
2091
2092Ref<Function> BinaryView::AddFunctionForAnalysis(Platform* platform, uint64_t addr, bool autoDiscovered, Type* type)
2093{
2094 BNFunction* func = BNAddFunctionForAnalysis(
2095 m_object, platform->GetObject(), addr, autoDiscovered, type ? type->GetObject() : nullptr);
2096 if (!func)
2097 return nullptr;
2098 return new Function(func);
2099}
2100
2101
2102void BinaryView::AddEntryPointForAnalysis(Platform* platform, uint64_t addr)

Callers 6

InitializeHeaderMethod · 0.80
ParseSymbolTableMethod · 0.80
ApplyHeaderMethod · 0.80
ApplySymbolFunction · 0.80
ProcessVFTMethod · 0.80
ProcessVFTMethod · 0.80

Calls 1

GetObjectMethod · 0.45

Tested by

no test coverage detected