class Pliney::MachO::Section64Reader
Attributes
_reserved3[R]
Public Instance Methods
parse()
click to toggle source
Calls superclass method
Pliney::MachO::CommonSectionReader#parse
# File lib/pliney/macho.rb, line 407 def parse() super() @addr = @fh.read_uint64le @size = @fh.read_uint64le @offset = @fh.read_uint32le @align = @fh.read_uint32le @reloff = @fh.read_uint32le @nreloc = @fh.read_uint32le @flags = @fh.read_uint32le @_reserved1 = @fh.read_uint32le @_reserved2 = @fh.read_uint32le @_reserved3 = @fh.read_uint32le end