(self, data)
| 161 | class LoadDylinker(LoadCommand): |
| 162 | |
| 163 | def __init__(self, data): |
| 164 | super().__init__(data) |
| 165 | self.str_offset = unpack("<L", self.FR.read(4))[0] |
| 166 | self.name = self.FR.readString(4) |
| 167 | |
| 168 | # def __str__(self): |
| 169 | # return (" DyLinker: Name %s" % self.name) |
nothing calls this directly
no test coverage detected