Class DyldCacheImageTextInfo
- java.lang.Object
-
- ghidra.app.util.bin.format.macho.dyld.DyldCacheImageTextInfo
-
- All Implemented Interfaces:
DyldCacheImage,StructConverter
public class DyldCacheImageTextInfo extends java.lang.Object implements DyldCacheImage, StructConverter
Represents a dyld_cache_image_text_info structure.- See Also:
- dyld3/shared-cache/dyld_cache_format.h
-
-
Constructor Summary
Constructors Constructor Description DyldCacheImageTextInfo(BinaryReader reader)Create a newDyldCacheImageTextInfo.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetAddress()Gets the address the start of the imagejava.lang.StringgetPath()Gets the path of the imageDataTypetoDataType()Returns a structure datatype representing the contents of the implementor of this interface.
-
-
-
Constructor Detail
-
DyldCacheImageTextInfo
public DyldCacheImageTextInfo(BinaryReader reader) throws java.io.IOException
Create a newDyldCacheImageTextInfo.- Parameters:
reader- ABinaryReaderpositioned at the start of a DYLD image text info- Throws:
java.io.IOException- if there was an IO-related problem creating the DYLD image text info
-
-
Method Detail
-
getAddress
public long getAddress()
Description copied from interface:DyldCacheImageGets the address the start of the image- Specified by:
getAddressin interfaceDyldCacheImage- Returns:
- The address of the start of the image
-
getPath
public java.lang.String getPath()
Description copied from interface:DyldCacheImageGets the path of the image- Specified by:
getPathin interfaceDyldCacheImage- Returns:
- The path of the image
-
toDataType
public DataType toDataType() throws DuplicateNameException, java.io.IOException
Description copied from interface:StructConverterReturns 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:
toDataTypein 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
-
-