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

Method get_section_by_name

python/binaryview.py:9640–9645  ·  view source on GitHub ↗
(self, name: str)

Source from the content-addressed store, hash-verified

9638 core.BNFreeSectionList(section_list, count.value)
9639
9640 def get_section_by_name(self, name: str) -> Optional[Section]:
9641 section = core.BNGetSectionByName(self.handle, name)
9642 if section is None:
9643 return None
9644 result = Section(section)
9645 return result
9646
9647 def get_unique_section_names(self, name_list: List[str]) -> List[str]:
9648 incoming_names = (ctypes.c_char_p * len(name_list))()

Callers

nothing calls this directly

Calls 1

SectionClass · 0.70

Tested by

no test coverage detected