Lines Matching defs:dispatch
37 bool dispatch;
78 print_banner(FILE *f, bool dispatch)
80 if (dispatch)
87 print_node(FILE *f, const struct rte_graph_cluster_node_stats *stat, bool dispatch)
107 if (dispatch) {
112 stat->name, calls, objs, stat->dispatch.sched_objs,
113 stat->dispatch.sched_fail, stat->realloc_count, objs_per_call,
125 print_xstat(FILE *f, const struct rte_graph_cluster_node_stats *stat, bool dispatch)
129 if (dispatch) {
144 graph_cluster_stats_cb(bool dispatch, bool is_first, bool is_last, void *cookie,
150 print_banner(f, dispatch);
152 print_node(f, stat, dispatch);
154 print_xstat(f, stat, dispatch);
157 if (dispatch)
422 stats->dispatch = true;
460 cluster_node_arregate_stats(struct cluster_node *cluster, bool dispatch)
474 if (dispatch) {
475 sched_objs += node->dispatch.total_sched_objs;
476 sched_fail += node->dispatch.total_sched_fail;
495 if (dispatch) {
496 stat->dispatch.sched_objs = sched_objs;
497 stat->dispatch.sched_fail = sched_fail;
525 cluster_node_arregate_stats(cluster, stat->dispatch);