Skip to content

Latest commit

History

History
39 lines (30 loc) · 1.45 KB

File metadata and controls

39 lines (30 loc) · 1.45 KB

AnalysisFunctionEntry

Properties

NameTypeDescriptionNotes
binary_idint
debugbool
function_idint
function_namestr
function_sizeint
function_vaddrint
mangled_namestr[optional]
source_analysis_idintID of the analysis the source function belongs to, if any[optional]
source_binary_idint[optional]
source_function_idintID of the source function this name was transferred from, if any[optional]
source_typestr

Example

fromrevengai.models.analysis_function_entryimportAnalysisFunctionEntry# TODO update the JSON string belowjson="{}"# create an instance of AnalysisFunctionEntry from a JSON stringanalysis_function_entry_instance=AnalysisFunctionEntry.from_json(json)
# print the JSON string representation of the objectprint(AnalysisFunctionEntry.to_json())
# convert the object into a dictanalysis_function_entry_dict=analysis_function_entry_instance.to_dict()
# create an instance of AnalysisFunctionEntry from a dictanalysis_function_entry_from_dict=AnalysisFunctionEntry.from_dict(analysis_function_entry_dict)

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