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

Method exports

src/disassembler/disas_api.py:92–103  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 2

analyzeFileFunction · 0.80
analyzeFunctionMethod · 0.80

Calls 1

exportsInnerMethod · 0.95

Tested by

no test coverage detected