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

Method GetFunctionByName

platform.cpp:690–698  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

688
689
690Ref<Type> Platform::GetFunctionByName(const QualifiedName& name, bool exactMatch)
691{
692 BNQualifiedName nameObj = name.GetAPIObject();
693 BNType* type = BNGetPlatformFunctionByName(m_object, &nameObj, exactMatch);
694 QualifiedName::FreeAPIObject(&nameObj);
695 if (!type)
696 return nullptr;
697 return new Type(type);
698}
699
700
701string Platform::GetSystemCallName(uint32_t n)

Callers 5

ParseSymbolTableMethod · 0.80
DefineMachoSymbolMethod · 0.80
DefineElfSymbolMethod · 0.80
AddPESymbolMethod · 0.80
AddCOFFSymbolMethod · 0.80

Calls 1

GetAPIObjectMethod · 0.45

Tested by

no test coverage detected