Class DyldChainedFixupHeader
- java.lang.Object
-
- ghidra.app.util.bin.format.macho.commands.DyldChainedFixupHeader
-
- All Implemented Interfaces:
StructConverter
public class DyldChainedFixupHeader extends java.lang.Object implements StructConverter
Represents a dyld_chained_fixups_header structure.- See Also:
- mach-o/fixup-chains.h
-
-
Constructor Summary
Constructors Constructor Description DyldChainedFixupHeader()
DO NOT USE THIS CONSTRUCTOR, USE create*(GenericFactory ...) FACTORY METHODS INSTEAD.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DyldChainedImports
getChainedImports()
DyldChainedStartsInImage
getChainedStartsInImage()
int
getFixups_version()
int
getImports_count()
int
getImports_format()
int
getImports_offset()
int
getStarts_offset()
int
getSymbols_format()
int
getSymbols_offset()
boolean
isCompress()
DataType
toDataType()
Returns a structure datatype representing the contents of the implementor of this interface.
-
-
-
Method Detail
-
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:
StructureDataType
-
getFixups_version
public int getFixups_version()
-
getStarts_offset
public int getStarts_offset()
-
getImports_offset
public int getImports_offset()
-
getSymbols_offset
public int getSymbols_offset()
-
getImports_count
public int getImports_count()
-
getImports_format
public int getImports_format()
-
getSymbols_format
public int getSymbols_format()
-
isCompress
public boolean isCompress()
-
getChainedStartsInImage
public DyldChainedStartsInImage getChainedStartsInImage()
-
getChainedImports
public DyldChainedImports getChainedImports()
-
-