Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.34 KB

File metadata and controls

36 lines (27 loc) · 1.34 KB

FunctionListItem

Properties

Name Type Description Notes
id int Function id
name str Name of the function
name_source_type str The source (process) the function name came from
name_source NameSourceType The source of the current function name.
mangled_name str Mangled name of the function
vaddr int Function virtual address
size int Function size in bytes
debug bool Whether the function has debug information

Example

from revengai.models.function_list_item import FunctionListItem

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

# convert the object into a dict
function_list_item_dict = function_list_item_instance.to_dict()
# create an instance of FunctionListItem from a dict
function_list_item_from_dict = FunctionListItem.from_dict(function_list_item_dict)

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