MCPcopy Create free account
hub / github.com/lief-project/LIEF / print_methods

Function print_methods

api/python/examples/dex_reader.py:95–104  ·  view source on GitHub ↗
(dexfile)

Source from the content-addressed store, hash-verified

93
94@exceptions_handler(Exception)
95def print_methods(dexfile):
96 format_str = "{:<33} {:<30}"
97 format_hex = "{:<33} 0x{:<28x}"
98 format_dec = "{:<33} {:<30d}"
99
100 methods = dexfile.methods
101
102 print("== Methods ==")
103 for m in methods:
104 print(m)
105
106@exceptions_handler(Exception)
107def print_strings(dexfile):

Callers 1

mainFunction · 0.70

Calls 1

printFunction · 0.50

Tested by

no test coverage detected