You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Internal functions that call this import, resolved via its PLT/stub addresses.
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]
Example
fromrevengai.models.imported_function_detail_output_bodyimportImportedFunctionDetailOutputBody# TODO update the JSON string belowjson="{}"# create an instance of ImportedFunctionDetailOutputBody from a JSON stringimported_function_detail_output_body_instance=ImportedFunctionDetailOutputBody.from_json(json)
# print the JSON string representation of the objectprint(ImportedFunctionDetailOutputBody.to_json())
# convert the object into a dictimported_function_detail_output_body_dict=imported_function_detail_output_body_instance.to_dict()
# create an instance of ImportedFunctionDetailOutputBody from a dictimported_function_detail_output_body_from_dict=ImportedFunctionDetailOutputBody.from_dict(imported_function_detail_output_body_dict)