Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.12 KB

File metadata and controls

36 lines (27 loc) · 1.12 KB

CallEdge

Properties

Name Type Description Notes
callee_function_id int [optional]
callee_name str [optional]
callee_vaddr int
caller_function_id int
caller_name str [optional]
caller_vaddr int Entry vaddr of the caller function (joined from function_t).
is_external bool
thunked_vaddr int [optional]

Example

from revengai.models.call_edge import CallEdge

# TODO update the JSON string below
json = "{}"
# create an instance of CallEdge from a JSON string
call_edge_instance = CallEdge.from_json(json)
# print the JSON string representation of the object
print(CallEdge.to_json())

# convert the object into a dict
call_edge_dict = call_edge_instance.to_dict()
# create an instance of CallEdge from a dict
call_edge_from_dict = CallEdge.from_dict(call_edge_dict)

[Back to Model list] [Back to API list] [Back to README]