Package ghidra.app.util.bin.format.pef
Class ImportedSymbol
java.lang.Object
ghidra.app.util.bin.format.pef.ImportedSymbol
- All Implemented Interfaces:
StructConverter
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Weak symbol maskstatic final int
-
Method Summary
Modifier and TypeMethodDescriptiongetName()
Returns the symbol's name.Returns the symbol's class.int
The offset (in bytes) from the beginning of the loader string table to the null-terminated name of the symbol.boolean
isWeak()
The imported symbol does not have to be present at fragment preparation time in order for execution to continue.Returns a structure datatype representing the contents of the implementor of this interface.toString()
-
Field Details
-
SIZEOF
public static final int SIZEOF- See Also:
-
kPEFWeakImportSymMask
public static final int kPEFWeakImportSymMaskWeak symbol mask- See Also:
-
-
Method Details
-
getName
Returns the symbol's name.- Returns:
- the symbol's name
-
getSymbolClass
Returns the symbol's class.- Returns:
- the symbol's class
-
isWeak
public boolean isWeak()The imported symbol does not have to be present at fragment preparation time in order for execution to continue.- Returns:
- if the symbol is weak
-
getSymbolNameOffset
public int getSymbolNameOffset()The offset (in bytes) from the beginning of the loader string table to the null-terminated name of the symbol.- Returns:
- offset to the null-terminated name of the symbol
-
toDataType
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.
- Returns:
- returns a structure datatype representing the implementor of this interface
- Throws:
DuplicateNameException
- when a datatype of the same name already existsIOException
- if an IO-related error occurs- See Also:
-
toString
-