class Metasm::ELF::Relocation

Attributes

offset[RW]
symbol[RW]
type[RW]

Public Instance Methods

addend() click to toggle source
# File metasm/exe_format/elf.rb, line 518
def addend ; end
struct_specialized(elf) click to toggle source
# File metasm/exe_format/elf.rb, line 510
def struct_specialized(elf)
        return Relocation32 if not elf
        case elf.bitsize
        when 32; Relocation32
        else Relocation64
        end
end