ElfImportSymbol

data class ElfImportSymbol(val name: String, val file: String, val binding: ElfSymBinding, val type: ElfSymType) : ImportSymbol(source)

Represents an import symbol in an ELF file

Constructors

Link copied to clipboard
constructor(name: String, file: String, binding: ElfSymBinding, type: ElfSymType)

Properties

Link copied to clipboard

Symbol binding attribute (usually GLOBAL or WEAK)

Link copied to clipboard
open override val fields: Map<String, Any>
Link copied to clipboard
open override val file: String

Name of the source file (library) of the import symbol, usually empty or inferred from the dynamic section in ELF

Link copied to clipboard
open override val name: String

Symbol name

Link copied to clipboard

Symbol type (NOTYPE, OBJECT, FUNC, etc.)