MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / FlowGraph

Method FlowGraph

flowgraph.cpp:73–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71
72
73FlowGraph::FlowGraph()
74{
75 BNCustomFlowGraph callbacks;
76 callbacks.context = this;
77 callbacks.prepareForLayout = PrepareForLayoutCallback;
78 callbacks.populateNodes = PopulateNodesCallback;
79 callbacks.completeLayout = CompleteLayoutCallback;
80 callbacks.update = UpdateCallback;
81 callbacks.freeObject = FreeObjectCallback;
82 callbacks.externalRefTaken = nullptr;
83 callbacks.externalRefReleased = nullptr;
84 AddRefForRegistration();
85 m_object = BNCreateCustomFlowGraph(&callbacks);
86}
87
88
89FlowGraph::FlowGraph(BNFlowGraph* graph)

Callers 4

show_llil_hierarchyMethod · 0.80
show_hlil_hierarchyMethod · 0.80
_apply_to_flow_graphMethod · 0.80
show_mlil_hierarchyMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected