Return a list of all of the exported symbols (string names) in the binary (singleton style). Return Value: list of all of the exported symbols in the program
(self)
| 90 | return self._all_strings |
| 91 | |
| 92 | def exports(self): |
| 93 | """Return a list of all of the exported symbols (string names) in the binary (singleton style). |
| 94 | |
| 95 | Return Value: |
| 96 | list of all of the exported symbols in the program |
| 97 | """ |
| 98 | # singleton |
| 99 | if self._exported_symbols is None: |
| 100 | self._exported_symbols = list(self.exportsInner()) |
| 101 | |
| 102 | # return the result |
| 103 | return self._exported_symbols |
| 104 | |
| 105 | def numSegments(self): |
| 106 | """Return the number of the segments in the binary. |
no test coverage detected