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)
| 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): |