| Name |
Type |
Description |
Notes |
| imported_function_id |
int |
|
|
| is_function |
bool |
False for imported data symbols. |
|
| library_name |
str |
Library the symbol is imported from. '<EXTERNAL>' for unattributed imports. |
|
| library_version |
str |
Versioned symbol tag, when the loader records one. |
[optional] |
| name |
str |
|
|
| original_name |
str |
Pre-demangling / pre-aliasing name, when it differs from name. |
[optional] |
| stub_vaddrs |
List[int] |
PLT/stub addresses that resolve external call edges (function_call_edges.callee_vaddr) to this import. Use these to link a caller's external callee to this import. |
|
| vaddr |
int |
Virtual address of the import, when known. |
[optional] |
from revengai.models.imported_function_entry import ImportedFunctionEntry
# TODO update the JSON string below
json = "{}"
# create an instance of ImportedFunctionEntry from a JSON string
imported_function_entry_instance = ImportedFunctionEntry.from_json(json)
# print the JSON string representation of the object
print(ImportedFunctionEntry.to_json())
# convert the object into a dict
imported_function_entry_dict = imported_function_entry_instance.to_dict()
# create an instance of ImportedFunctionEntry from a dict
imported_function_entry_from_dict = ImportedFunctionEntry.from_dict(imported_function_entry_dict)
[Back to Model list] [Back to API list] [Back to README]