MCPcopy Create free account
hub / github.com/CheckPointSW/Karta / segmentFunctions

Method segmentFunctions

src/disassembler/IDA/ida_api.py:356–365  ·  view source on GitHub ↗

Return a collection / generator of addresses (ea) of the functions in the given segment. Args: idx (int): segment index (in the range [0, numSegments() - 1]) Return Value: collection of function addresses

(self, idx)

Source from the content-addressed store, hash-verified

354
355 # Overridden base function
356 def segmentFunctions(self, idx):
357 """Return a collection / generator of addresses (ea) of the functions in the given segment.
358
359 Args:
360 idx (int): segment index (in the range [0, numSegments() - 1])
361
362 Return Value:
363 collection of function addresses
364 """
365 return [x.ea for x in sark.Segment(index=idx).functions]
366
367 # Overridden base function
368 def inputFile(self):

Callers 1

analyzeFileFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected