Class DebugMisc
- java.lang.Object
 - 
- ghidra.app.util.bin.format.pe.debug.DebugMisc
 
 
- 
- All Implemented Interfaces:
 StructConverter
public class DebugMisc extends java.lang.Object implements StructConverter
A class to represent theIMAGE_DEBUG_MISCstruct as defined inwinnt.h.
typedef struct _IMAGE_DEBUG_MISC { DWORD DataType; // type of misc data, see defines DWORD Length; // total length of record, rounded to four // byte multiple. BOOLEAN Unicode; // TRUE if data is unicode string BYTE Reserved[ 3 ]; BYTE Data[ 1 ]; // Actual data } 
- 
- 
Constructor Summary
Constructors Constructor Description DebugMisc()DO NOT USE THIS CONSTRUCTOR, USE create*(GenericFactory ...) FACTORY METHODS INSTEAD. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetActualData()Returns a string equivalent of the actual misc debug data.intgetDataType()Returns the data type of this misc debug.DebugDirectorygetDebugDirectory()Returns the debug directory associated with this misc debug.intgetLength()Returns the length of this misc debug.byte[]getReserved()Returns the array of reserved bytes.booleanisUnicode()Returns true if this misc debug is unicode.DataTypetoDataType()Returns a structure datatype representing the contents of the implementor of this interface.java.lang.StringtoString() 
 - 
 
- 
- 
Field Detail
- 
NAME
public static final java.lang.String NAME
The name to use when converting into a structure data type.- See Also:
 - Constant Field Values
 
 
 - 
 
- 
Method Detail
- 
getDataType
public int getDataType()
Returns the data type of this misc debug.- Returns:
 - the data type of this misc debug
 
 
- 
getLength
public int getLength()
Returns the length of this misc debug.- Returns:
 - the length of this misc debug
 
 
- 
isUnicode
public boolean isUnicode()
Returns true if this misc debug is unicode.- Returns:
 - true if this misc debug is unicode
 
 
- 
getReserved
public byte[] getReserved()
Returns the array of reserved bytes.- Returns:
 - the array of reserved bytes
 
 
- 
getActualData
public java.lang.String getActualData()
Returns a string equivalent of the actual misc debug data.- Returns:
 - a string equivalent of the actual misc debug data
 
 
- 
toString
public java.lang.String toString()
- Overrides:
 toStringin classjava.lang.Object- See Also:
 Object.toString()
 
- 
getDebugDirectory
public DebugDirectory getDebugDirectory()
Returns the debug directory associated with this misc debug.- Returns:
 - the debug directory associated with this misc debug
 
 
- 
toDataType
public DataType toDataType() throws DuplicateNameException
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 exists- See Also:
 StructConverter.toDataType()
 
 - 
 
 -