(self, data)
| 531 | |
| 532 | class LoadIdDylib(LoadCommand): |
| 533 | def __init__(self, data): |
| 534 | super().__init__(data) |
| 535 | self.name_offset = unpack("<L", self.FR.read(4))[0] |
| 536 | self.timestamp = unpack("<L", self.FR.read(4))[0] |
| 537 | self.current_version = unpack("<L", self.FR.read(4))[0] |
| 538 | self.compatibility_version = unpack("<L", self.FR.read(4))[0] |
| 539 | self.FR.setOffset(self.name_offset) |
| 540 | self.name = self.FR.readString(4) |
nothing calls this directly
no test coverage detected