MCPcopy Index your code
hub / github.com/qilingframework/qiling / __init__

Method __init__

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

Source from the content-addressed store, hash-verified

13class LoadCommand:
14
15 def __init__(self, data):
16 self.data = data
17 self.FR = FileReader(data)
18 self.cmd_id = unpack("<L", self.FR.read(4))[0]
19 self.cmd_size = unpack("<L", self.FR.read(4))[0]
20 pass
21
22 def get_complete(self):
23 cmd_map = {

Callers

nothing calls this directly

Calls 2

FileReaderClass · 0.85
readMethod · 0.45

Tested by

no test coverage detected