Class ExportTrie.ExportEntry
java.lang.Object
ghidra.app.util.bin.format.macho.commands.ExportTrie.ExportEntry
- Enclosing class:
- ExportTrie
A export trie entry
-
Constructor Summary
ConstructorsConstructorDescriptionExportEntry(String name, long address, long flags, long other, String importName) Creates a newExportTrie.ExportEntry -
Method Summary
Modifier and TypeMethodDescriptionlongGets the export address, which is is an image base offset (from the Mach-O header)longgetFlags()Gets the export flagsGets the export import namegetName()Gets the export namelonggetOther()Gets the export "other" infobooleanCheck to see if the export is a "re-export"toString()
-
Constructor Details
-
ExportEntry
Creates a newExportTrie.ExportEntry- Parameters:
name- The export nameaddress- The export addressflags- The export flagsother- The export "other" infoimportName- The export import name (could be null if not a re-export)
-
-
Method Details
-
getName
Gets the export name- Returns:
- The export name
-
getAddress
public long getAddress()Gets the export address, which is is an image base offset (from the Mach-O header)- Returns:
- The export address
-
getFlags
public long getFlags()Gets the export flags- Returns:
- The export flags
-
getOther
public long getOther()Gets the export "other" info- Returns:
- The export "other" info
-
getImportName
Gets the export import name- Returns:
- The export import name (could be null if not a re-export)
-
isReExport
public boolean isReExport()Check to see if the export is a "re-export"- Returns:
- True if re-export; otherwise, false
-
toString
-