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

Method GetAllEntryFunctions

binaryview.cpp:2351–2363  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2349
2350
2351vector<Ref<Function>> BinaryView::GetAllEntryFunctions()
2352{
2353 size_t count;
2354 BNFunction** funcs = BNGetAllEntryFunctions(m_object, &count);
2355 if (count == 0)
2356 return {};
2357
2358 vector<Ref<Function>> result;
2359 for (size_t i = 0; i < count; i++)
2360 result.push_back(new Function(BNNewFunctionReference(funcs[i])));
2361 BNFreeFunctionList(funcs, count);
2362 return result;
2363}
2364
2365
2366Ref<BasicBlock> BinaryView::GetRecentBasicBlockForAddress(uint64_t addr)

Callers 2

GenericEntryModelMethod · 0.80
mainFunction · 0.80

Calls 1

push_backMethod · 0.80

Tested by

no test coverage detected