Lines Matching refs:graph
19 struct graph **graphs;
137 struct rte_graph *graph, struct graph_node *graph_node) in stats_mem_populate() argument
151 node = graph_node_id_to_ptr(graph, id); in stats_mem_populate()
156 graph_node->node->name, graph->name); in stats_mem_populate()
176 node = graph_node_id_to_ptr(graph, id); in stats_mem_populate()
179 graph_node->node->name, graph->name); in stats_mem_populate()
206 cluster_add(struct cluster *cluster, struct graph *graph) in cluster_add() argument
213 if (cluster->graphs[count] == graph) in cluster_add()
219 sz = sizeof(struct graph *) * cluster->size; in cluster_add()
226 cluster->graphs[cluster->nb_graphs++] = graph; in cluster_add()
243 struct graph *graph; in expand_pattern_to_cluster() local
247 STAILQ_FOREACH(graph, graph_head, next) { in expand_pattern_to_cluster()
248 if (fnmatch(pattern, graph->name, 0) == 0) { in expand_pattern_to_cluster()
249 if (cluster_add(cluster, graph)) in expand_pattern_to_cluster()
269 struct graph *graph; in rte_graph_cluster_stats_create() local
300 graph = cluster.graphs[i]; in rte_graph_cluster_stats_create()
301 STAILQ_FOREACH(graph_node, &graph->node_list, next) { in rte_graph_cluster_stats_create()
302 struct rte_graph *graph_fp = graph->graph; in rte_graph_cluster_stats_create()