Return a list of all of the functions in the binary (singleton style). Return Value: list of all of functions in the program
(self)
| 59 | raise NotImplementedError("Subclasses should implement this!") |
| 60 | |
| 61 | def functions(self): |
| 62 | """Return a list of all of the functions in the binary (singleton style). |
| 63 | |
| 64 | Return Value: |
| 65 | list of all of functions in the program |
| 66 | """ |
| 67 | # singleton |
| 68 | if self._all_functions is None: |
| 69 | self._all_functions = list(self.functionsInner()) |
| 70 | |
| 71 | # return the result |
| 72 | return self._all_functions |
| 73 | |
| 74 | def strings(self): |
| 75 | """Return a list of all of the string in the binary (singleton style). |
no test coverage detected