MCPcopy Create free account
hub / github.com/F-Stack/f-stack / rte_node_id_to_name

Function rte_node_id_to_name

dpdk/lib/graph/node.c:185–197  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

183}
184
185char *
186rte_node_id_to_name(rte_node_t id)
187{
188 struct node *node;
189
190 NODE_ID_CHECK(id);
191 STAILQ_FOREACH(node, &node_list, next)
192 if (node->id == id)
193 return node->name;
194
195fail:
196 return NULL;
197}
198
199rte_edge_t
200rte_node_edge_count(rte_node_t id)

Callers 4

graph_nodes_populateFunction · 0.85
graph_node_count_edgesFunction · 0.85
graph_initFunction · 0.85
test_lookup_functionsFunction · 0.85

Calls

no outgoing calls

Tested by 3

graph_node_count_edgesFunction · 0.68
graph_initFunction · 0.68
test_lookup_functionsFunction · 0.68