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

Method GetSectionByName

binaryview.cpp:5042–5048  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5040
5041
5042Ref<Section> BinaryView::GetSectionByName(const string& name)
5043{
5044 BNSection* section = BNGetSectionByName(m_object, name.c_str());
5045 if (section)
5046 return new Section(section);
5047 return nullptr;
5048}
5049
5050
5051vector<string> BinaryView::GetUniqueSectionNames(const vector<string>& names)

Callers 7

GetSectionWithNameMethod · 0.80
ViewHasObjCMetadataMethod · 0.80
ParseMiniDebugInfoMethod · 0.80
GetSectionWithNameMethod · 0.80
ProcessRTTIMethod · 0.80
ProcessVFTMethod · 0.80

Calls 1

c_strMethod · 0.80

Tested by

no test coverage detected