Class DyldCacheImageInfo
- java.lang.Object
- 
- ghidra.app.util.bin.format.macho.dyld.DyldCacheImageInfo
 
- 
- All Implemented Interfaces:
- StructConverter
 
 public class DyldCacheImageInfo extends java.lang.Object implements StructConverter Represents a dyld_cache_image_info structure.- See Also:
- launch-cache/dyld_cache_format.h
 
- 
- 
Constructor SummaryConstructors Constructor Description DyldCacheImageInfo(BinaryReader reader)Create a newDyldCacheImageInfo.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetAddress()Gets the address the start of the image.java.lang.StringgetPath()Gets the path of the image.DataTypetoDataType()Returns a structure datatype representing the contents of the implementor of this interface.
 
- 
- 
- 
Constructor Detail- 
DyldCacheImageInfopublic DyldCacheImageInfo(BinaryReader reader) throws java.io.IOException Create a newDyldCacheImageInfo.- Parameters:
- reader- A- BinaryReaderpositioned at the start of a DYLD image info
- Throws:
- java.io.IOException- if there was an IO-related problem creating the DYLD image info
 
 
- 
 - 
Method Detail- 
getAddresspublic long getAddress() Gets the address the start of the image.- Returns:
- The address of the start of the image
 
 - 
getPathpublic java.lang.String getPath() Gets the path of the image.- Returns:
- The path of the image
 
 - 
toDataTypepublic 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 interface- StructConverter
- Returns:
- returns a structure datatype representing the implementor of this interface
- Throws:
- DuplicateNameException- when a datatype of the same name already exists
- java.io.IOException
- See Also:
- StructureDataType
 
 
- 
 
-