Package ghidra.app.util.bin.format.elf
Class GnuVerdef
- java.lang.Object
-
- ghidra.app.util.bin.format.elf.GnuVerdef
-
- All Implemented Interfaces:
StructConverter
public class GnuVerdef extends java.lang.Object implements StructConverter
Version definition sections.typedef struct { Elf32_Half vd_version; //Version revision Elf32_Half vd_flags; //Version information Elf32_Half vd_ndx; //Version Index Elf32_Half vd_cnt; //Number of associated aux entries Elf32_Word vd_hash; //Version name hash value Elf32_Word vd_aux; //Offset in bytes to verdaux array Elf32_Word vd_next; //Offset in bytes to next verdef entry } Elf32_Verdef; typedef struct { Elf64_Half vd_version; //Version revision Elf64_Half vd_flags; //Version information Elf64_Half vd_ndx; //Version Index Elf64_Half vd_cnt; //Number of associated aux entries Elf64_Word vd_hash; //Version name hash value Elf64_Word vd_aux; //Offset in bytes to verdaux array Elf64_Word vd_next; //Offset in bytes to next verdef entry } Elf64_Verdef;
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAux()
short
getCnt()
short
getFlags()
int
getHash()
short
getNdx()
int
getNext()
short
getVersion()
DataType
toDataType()
Returns a structure datatype representing the contents of the implementor of this interface.
-
-
-
Method Detail
-
getVersion
public short getVersion()
-
getFlags
public short getFlags()
-
getNdx
public short getNdx()
-
getCnt
public short getCnt()
-
getHash
public int getHash()
-
getAux
public int getAux()
-
getNext
public int getNext()
-
toDataType
public DataType toDataType() throws DuplicateNameException, java.io.IOException
Description copied from interface:StructConverter
Returns a structure datatype representing the contents of the implementor of this interface.For example, given:
class A { int foo; double bar; }
The return value should be a structure data type with two data type components; an INT and a DOUBLE. The structure should contain field names and, if possible, field comments.
- Specified by:
toDataType
in interfaceStructConverter
- Returns:
- returns a structure datatype representing the implementor of this interface
- Throws:
DuplicateNameException
- when a datatype of the same name already existsjava.io.IOException
- See Also:
StructConverter.toDataType()
-
-