Home
last modified time | relevance | path

Searched refs:table_stats (Results 1 – 2 of 2) sorted by relevance

/dpdk/lib/pipeline/
H A Drte_swx_pipeline.c2117 struct table_statistics *stats = &p->table_stats[table_id]; in instr_table_exec()
7600 CHECK(p->table_stats, ENOMEM); in table_build()
7604 CHECK(p->table_stats[i].n_pkts_action, ENOMEM); in table_build()
7667 if (p->table_stats) { in table_build_free()
7669 free(p->table_stats[i].n_pkts_action); in table_build_free()
7671 free(p->table_stats); in table_build_free()
9750 struct table_statistics *table_stats; in rte_swx_ctl_pipeline_table_stats_read() local
9759 table_stats = &p->table_stats[table->id]; in rte_swx_ctl_pipeline_table_stats_read()
9762 table_stats->n_pkts_action, in rte_swx_ctl_pipeline_table_stats_read()
9765 stats->n_pkts_hit = table_stats->n_pkts_hit[1]; in rte_swx_ctl_pipeline_table_stats_read()
[all …]
H A Drte_swx_pipeline_internal.h1405 struct table_statistics *table_stats; member