Package ghidra.app.util.bin.format.elf
Interface ElfFileSection
- 
- All Superinterfaces:
- StructConverter
 - All Known Implementing Classes:
- ElfDynamicTable,- ElfRelocationTable,- ElfStringTable,- ElfSymbolTable
 
 public interface ElfFileSection extends StructConverter 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetAddressOffset()Preferred memory address offset where data should be loaded.intgetEntrySize()Size of each structured entry in byteslonggetFileOffset()Offset within file where section bytes are specifiedlonggetLength()Length of file section in bytes- 
Methods inherited from interface ghidra.app.util.bin.StructConvertertoDataType
 
- 
 
- 
- 
- 
Method Detail- 
getAddressOffsetlong getAddressOffset() Preferred memory address offset where data should be loaded. The returned offset will already have the prelink adjustment applied, although will not reflect any change in the image base.- Returns:
- default memory address offset where data should be loaded
 
 - 
getFileOffsetlong getFileOffset() Offset within file where section bytes are specified- Returns:
- offset within file where section bytes are specified
 
 - 
getLengthlong getLength() Length of file section in bytes- Returns:
- length of file section in bytes
 
 - 
getEntrySizeint getEntrySize() Size of each structured entry in bytes- Returns:
- entry size or -1 if variable
 
 
- 
 
-