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

Method SetLines

flowgraphnode.cpp:121–131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

119
120
121void FlowGraphNode::SetLines(const vector<DisassemblyTextLine>& lines)
122{
123 size_t inCount = 0;
124 BNDisassemblyTextLine* inLines = AllocAPIObjectList<DisassemblyTextLine>(lines, &inCount);
125 BNSetFlowGraphNodeLines(m_object, inLines, inCount);
126
127 FreeAPIObjectList<DisassemblyTextLine>(inLines, inCount);
128
129 m_cachedLines = lines;
130 m_cachedLinesValid = true;
131}
132
133
134const vector<FlowGraphEdge>& FlowGraphNode::GetOutgoingEdges()

Callers 1

ApplyToFlowGraphMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected