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

Method functions

src/disassembler/disas_api.py:61–72  ·  view source on GitHub ↗

Return a list of all of the functions in the binary (singleton style). Return Value: list of all of functions in the program

(self)

Source from the content-addressed store, hash-verified

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

Callers 2

loadAndMatchAnchorsMethod · 0.80
locateFileBoundariesMethod · 0.80

Calls 1

functionsInnerMethod · 0.95

Tested by

no test coverage detected