class MachO::LoadCommands::DysymtabCommand
A load command containing symbolic information needed to support data structures used by the dynamic link editor. Corresponds to LC_DYSYMTAB.
Constants
- FORMAT
@see MachOStructure::FORMAT @api private
- SIZEOF
@see MachOStructure::SIZEOF @api private
Attributes
@return [Fixnum] the file offset to the referenced symbol table
@return [Fixnum] the file offset to the external relocation entries
@return [Fixnum] the index to externally defined symbols
@return [Fixnum] the index to local symbols
@return [Fixnum] the file offset to the indirect symbol table
@return [Fixnum] the index to undefined symbols
@return [Fixnum] the file offset to the local relocation entries
@return [Fixnum] the file offset to the module table
@return [Fixnum] the number of externally defined symbols
@return [Fixnum] the number of entries in the referenced symbol table
@return [Fixnum] the number of external relocation entries
@return [Fixnum] the number of entries in the indirect symbol table
@return [Fixnum] the number of local symbols
@return [Fixnum] the number of local relocation entries
@return [Fixnum] the number of entries in the module table
@return [Fixnum] the number of entries in the table of contents
@return [Fixnum] the number of undefined symbols
@return [Fixnum] the file offset to the table of contents
Public Class Methods
ugh @api private
MachO::LoadCommands::LoadCommand::new
# File lib/macho/load_commands.rb, line 839 def initialize(view, cmd, cmdsize, ilocalsym, nlocalsym, iextdefsym, nextdefsym, iundefsym, nundefsym, tocoff, ntoc, modtaboff, nmodtab, extrefsymoff, nextrefsyms, indirectsymoff, nindirectsyms, extreloff, nextrel, locreloff, nlocrel) super(view, cmd, cmdsize) @ilocalsym = ilocalsym @nlocalsym = nlocalsym @iextdefsym = iextdefsym @nextdefsym = nextdefsym @iundefsym = iundefsym @nundefsym = nundefsym @tocoff = tocoff @ntoc = ntoc @modtaboff = modtaboff @nmodtab = nmodtab @extrefsymoff = extrefsymoff @nextrefsyms = nextrefsyms @indirectsymoff = indirectsymoff @nindirectsyms = nindirectsyms @extreloff = extreloff @nextrel = nextrel @locreloff = locreloff @nlocrel = nlocrel end