MCPcopy Create free account
hub / github.com/qilingframework/qiling / __init__

Method __init__

qiling/loader/macho_parser/loadcommand.py:117–122  ·  view source on GitHub ↗
(self, data)

Source from the content-addressed store, hash-verified

115class LoadSymtab(LoadCommand):
116
117 def __init__(self, data):
118 super().__init__(data)
119 self.symbol_table_offset = unpack("<L", self.FR.read(4))[0]
120 self.number_of_symbols = unpack("<L", self.FR.read(4))[0]
121 self.string_table_offset = unpack("<L", self.FR.read(4))[0]
122 self.string_table_size = unpack("<L", self.FR.read(4))[0]
123
124
125 # def __str__(self):

Callers

nothing calls this directly

Calls 2

__init__Method · 0.45
readMethod · 0.45

Tested by

no test coverage detected