|
LIEF: Library to Instrument Executable Formats Version 0.17.1
|
Class which represents a PE Export entry (cf. PE::Export). More...
#include <ExportEntry.hpp>


Classes | |
| struct | forward_information_t |
Public Member Functions | |
| ExportEntry ()=default | |
| ExportEntry (uint32_t address, bool is_extern, uint16_t ordinal, uint32_t function_rva) | |
| ExportEntry (std::string name, uint32_t rva) | |
| ExportEntry (const ExportEntry &)=default | |
| ExportEntry & | operator= (const ExportEntry &)=default |
| ExportEntry (ExportEntry &&)=default | |
| ExportEntry & | operator= (ExportEntry &&)=default |
| ~ExportEntry () override=default | |
| std::string | demangled_name () const |
| Demangled representation of the symbol or an empty string if it can't be demangled. | |
| uint16_t | ordinal () const |
| Ordinal value associated with this exported entry. | |
| uint32_t | address () const |
| Address of the current exported function in the DLL. | |
| bool | is_extern () const |
| bool | is_forwarded () const |
| forward_information_t | forward_information () const |
| uint32_t | function_rva () const |
| void | ordinal (uint16_t ordinal) |
| void | address (uint32_t address) |
| void | is_extern (bool is_extern) |
| uint64_t | value () const override |
| void | value (uint64_t value) override |
| void | set_forward_info (std::string lib, std::string function) |
| 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 | size () const |
| This 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 which represents a PE Export entry (cf. PE::Export).
|
default |
Referenced by ExportEntry(), ExportEntry(), operator<<, operator=(), and operator=().
|
inline |
References address(), function_rva(), is_extern(), and ordinal().
|
inline |
References LIEF::Symbol::name(), and LIEF::Symbol::Symbol().
|
default |
References ExportEntry().
|
default |
References ExportEntry().
|
overridedefault |
|
overridevirtual |
Implements LIEF::Object.
|
inline |
Address of the current exported function in the DLL.
Referenced by address(), ExportEntry(), value(), and value().
|
inline |
References address().
| std::string LIEF::PE::ExportEntry::demangled_name | ( | ) | const |
Demangled representation of the symbol or an empty string if it can't be demangled.
|
inline |
References is_forwarded().
|
inline |
Referenced by ExportEntry().
|
inline |
Referenced by ExportEntry(), and is_extern().
|
inline |
References is_extern().
|
inline |
Referenced by forward_information().
|
default |
References ExportEntry().
|
default |
References ExportEntry().
|
inline |
Ordinal value associated with this exported entry.
This value is computed as the index of this entry in the address table plus the ordinal base (Export::ordinal_base)
Referenced by ExportEntry(), and ordinal().
|
inline |
References ordinal().
|
inline |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
Reimplemented from LIEF::Symbol.