Class: MachO::LoadCommands::TwolevelHintsCommand
- Inherits:
-
LoadCommand
- Object
- MachOStructure
- LoadCommand
- MachO::LoadCommands::TwolevelHintsCommand
- Defined in:
- lib/macho/load_commands.rb
Overview
A load command containing the offset and number of hints in the two-level namespace lookup hints table. Corresponds to LC_TWOLEVEL_HINTS.
Defined Under Namespace
Classes: TwolevelHintsTable
Constant Summary collapse
- FORMAT =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
"L=4".freeze
- SIZEOF =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
16
Instance Attribute Summary collapse
-
#htoffset ⇒ Fixnum
readonly
The offset to the hint table.
-
#nhints ⇒ Fixnum
readonly
The number of hints in the hint table.
-
#table ⇒ TwolevelHintsTable
readonly
The hint table.
Attributes inherited from LoadCommand
Instance Method Summary collapse
-
#initialize(view, cmd, cmdsize, htoffset, nhints) ⇒ TwolevelHintsCommand
constructor
private
A new instance of TwolevelHintsCommand.
Methods inherited from LoadCommand
create, new_from_bin, #offset, #serializable?, #serialize, #to_s, #type
Methods inherited from MachOStructure
Constructor Details
#initialize(view, cmd, cmdsize, htoffset, nhints) ⇒ TwolevelHintsCommand
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of TwolevelHintsCommand.
887 888 889 890 891 892 |
# File 'lib/macho/load_commands.rb', line 887 def initialize(view, cmd, cmdsize, htoffset, nhints) super(view, cmd, cmdsize) @htoffset = htoffset @nhints = nhints @table = TwolevelHintsTable.new(view, htoffset, nhints) end |
Instance Attribute Details
#htoffset ⇒ Fixnum (readonly)
Returns the offset to the hint table.
869 870 871 |
# File 'lib/macho/load_commands.rb', line 869 def htoffset @htoffset end |
#nhints ⇒ Fixnum (readonly)
Returns the number of hints in the hint table.
872 873 874 |
# File 'lib/macho/load_commands.rb', line 872 def nhints @nhints end |
#table ⇒ TwolevelHintsTable (readonly)
Returns the hint table.
876 877 878 |
# File 'lib/macho/load_commands.rb', line 876 def table @table end |