|
LIEF: Library to Instrument Executable Formats Version 1.0.0
|
Class that represents an entry (i.e. an import) in the import table (Import). More...
#include <ImportEntry.hpp>


Public Member Functions | |
| ImportEntry ()=default | |
| ImportEntry (uint64_t data, PE_TYPE type) | |
| ImportEntry (std::string name) | |
| ImportEntry (const ImportEntry &)=default | |
| ImportEntry & | operator= (const ImportEntry &)=default |
| ~ImportEntry () override=default | |
| std::string | demangled_name () const |
| Demangled representation of the symbol or an empty string if it can't be demangled. | |
| bool | is_ordinal () const |
| True if it is an import by ordinal | |
| uint16_t | ordinal () const |
| The ordinal value. | |
| uint64_t | hint_name_rva () const |
| uint16_t | hint () const |
| Index into the Export::entries that is used to speed-up the symbol resolution. | |
| uint64_t | iat_value () const |
| Value of the current entry in the Import Address Table. It should match the lookup table value. | |
| void | iat_value (uint64_t value) |
| uint64_t | ilt_value () const |
| Original value in the import lookup table. This value should match the iat_value(). | |
| void | ilt_value (uint64_t value) |
| uint64_t | data () const |
| Raw value. | |
| uint64_t | iat_address () const |
| Original address of the entry in the Import Address Table | |
| void | data (uint64_t data) |
| void | accept (Visitor &visitor) const override |
| Public Member Functions inherited from LIEF::Symbol | |
| Symbol ()=default | |
| Symbol (std::string name) | |
| Symbol (std::string name, uint64_t value) | |
| Symbol (std::string name, uint64_t value, uint64_t size) | |
| Symbol (const Symbol &)=default | |
| Symbol & | operator= (const Symbol &)=default |
| Symbol (Symbol &&)=default | |
| Symbol & | operator= (Symbol &&)=default |
| ~Symbol () override=default | |
| void | swap (Symbol &other) noexcept |
| virtual const std::string & | name () const |
| Return the symbol's name. | |
| virtual std::string & | name () |
| virtual void | name (std::string name) |
| Set symbol name. | |
| virtual uint64_t | value () const |
| Symbol's value which is usually the address of the symbol. | |
| virtual void | value (uint64_t value) |
| virtual uint64_t | size () const |
| The size of the symbol (when applicable). | |
| virtual void | size (uint64_t value) |
| void | accept (Visitor &visitor) const override |
| Method so that the visitor can visit us. | |
| Public Member Functions inherited from LIEF::Object | |
| Object () | |
| Object (const Object &other) | |
| Object & | operator= (const Object &other) |
| Object (Object &&other) noexcept=default | |
| Object & | operator= (Object &&other) noexcept=default |
| template<class T> | |
| output_t< T > | as () |
| template<class T> | |
| output_const_t< T > | as () const |
| virtual bool | operator== (const Object &other) const |
| virtual bool | operator!= (const Object &other) const |
| virtual | ~Object () |
Additional Inherited Members | |
| Public Types inherited from LIEF::Object | |
| template<class T> | |
| using | output_t = add_pointer_t<decay_t<T>> |
| template<class T> | |
| using | output_const_t = add_pointer_t<add_const_t<decay_t<T>>> |
Class that represents an entry (i.e. an import) in the import table (Import).
It extends the LIEF::Symbol generic class that exposes the LIEF::Symbol::name and LIEF::Symbol::value API
|
default |
Referenced by ImportEntry(), operator<<, and operator=().
|
inline |
References LIEF::Symbol::name().
|
default |
References ImportEntry().
|
overridedefault |
|
overridevirtual |
Implements LIEF::Object.
|
inline |
Raw value.
Referenced by data(), hint_name_rva(), and ImportEntry().
|
inline |
References data().
| std::string LIEF::PE::ImportEntry::demangled_name | ( | ) | const |
Demangled representation of the symbol or an empty string if it can't be demangled.
|
inline |
Index into the Export::entries that is used to speed-up the symbol resolution.
|
inline |
References data().
|
inline |
Original address of the entry in the Import Address Table
Referenced by operator<<.
|
inline |
Value of the current entry in the Import Address Table. It should match the lookup table value.
|
inline |
References LIEF::Symbol::value().
|
inline |
Original value in the import lookup table. This value should match the iat_value().
|
inline |
References LIEF::Symbol::value().
| bool LIEF::PE::ImportEntry::is_ordinal | ( | ) | const |
True if it is an import by ordinal
Referenced by ordinal().
|
default |
References ImportEntry().
|
inline |
The ordinal value.
References is_ordinal().