Class: MachO::SymtabCommand
- Inherits:
-
LoadCommand
- Object
- MachOStructure
- LoadCommand
- MachO::SymtabCommand
- Defined in:
- lib/macho/load_commands.rb
Instance Attribute Summary collapse
-
#nsyms ⇒ Object
readonly
Returns the value of attribute nsyms.
-
#stroff ⇒ Object
readonly
Returns the value of attribute stroff.
-
#strsize ⇒ Object
readonly
Returns the value of attribute strsize.
-
#symoff ⇒ Object
readonly
Returns the value of attribute symoff.
Attributes inherited from LoadCommand
Instance Method Summary collapse
-
#initialize(offset, cmd, cmdsize, symoff, nsyms, stroff, strsize) ⇒ SymtabCommand
constructor
A new instance of SymtabCommand.
Methods inherited from LoadCommand
Methods inherited from MachOStructure
Constructor Details
#initialize(offset, cmd, cmdsize, symoff, nsyms, stroff, strsize) ⇒ SymtabCommand
Returns a new instance of SymtabCommand.
401 402 403 404 405 406 407 |
# File 'lib/macho/load_commands.rb', line 401 def initialize(offset, cmd, cmdsize, symoff, nsyms, stroff, strsize) super(offset, cmd, cmdsize) @symoff = symoff @nsyms = nsyms @stroff = stroff @strsize = strsize end |
Instance Attribute Details
#nsyms ⇒ Object (readonly)
Returns the value of attribute nsyms.
396 397 398 |
# File 'lib/macho/load_commands.rb', line 396 def nsyms @nsyms end |
#stroff ⇒ Object (readonly)
Returns the value of attribute stroff.
396 397 398 |
# File 'lib/macho/load_commands.rb', line 396 def stroff @stroff end |
#strsize ⇒ Object (readonly)
Returns the value of attribute strsize.
396 397 398 |
# File 'lib/macho/load_commands.rb', line 396 def strsize @strsize end |
#symoff ⇒ Object (readonly)
Returns the value of attribute symoff.
396 397 398 |
# File 'lib/macho/load_commands.rb', line 396 def symoff @symoff end |