class MachO::LoadCommands::SymtabCommand
A load command containing the offsets and sizes of the link-edit 4.3BSD “stab” style symbol table information. Corresponds to LC_SYMTAB.
Constants
- FORMAT
@see MachOStructure::FORMAT @api private
- SIZEOF
@see MachOStructure::SIZEOF @api private
Attributes
nsyms[R]
@return [Fixnum] the number of symbol table entries
stroff[R]
@return the string table's offset
strsize[R]
@return the string table size in bytes
symoff[R]
@return [Fixnum] the symbol table's offset
Public Class Methods
new(view, cmd, cmdsize, symoff, nsyms, stroff, strsize)
click to toggle source
@api private
Calls superclass method
MachO::LoadCommands::LoadCommand::new
# File lib/macho/load_commands.rb, line 763 def initialize(view, cmd, cmdsize, symoff, nsyms, stroff, strsize) super(view, cmd, cmdsize) @symoff = symoff @nsyms = nsyms @stroff = stroff @strsize = strsize end