Class: Indis::MachO::DySymTabCommand
- Inherits:
-
Command
- Object
- Command
- Indis::MachO::DySymTabCommand
- Defined in:
- lib/indis-macho/command.rb
Overview
LC_DYSYMTAB
Constant Summary
Constant Summary
Constants inherited from Command
Command::CMD, Command::CMD_CLASS, Command::LC_REQ_DYLD
Instance Attribute Summary (collapse)
-
- (Object) indirect_symbols
readonly
Returns the value of attribute indirect_symbols.
Attributes inherited from Command
Instance Method Summary (collapse)
Methods inherited from Command
Constructor Details
This class inherits a constructor from Indis::MachO::Command
Instance Attribute Details
- (Object) indirect_symbols (readonly)
Returns the value of attribute indirect_symbols
239 240 241 |
# File 'lib/indis-macho/command.rb', line 239 def indirect_symbols @indirect_symbols end |
Instance Method Details
- (Object) process(payload)
241 242 243 244 245 246 247 248 |
# File 'lib/indis-macho/command.rb', line 241 def process(payload) super(payload) ofs = payload.pos payload.pos = @indirectsymoff @indirect_symbols = payload.read(@nindirectsyms * 4).unpack('V*') payload.pos = ofs end |