Lines Matching defs:total_stats

2086 	rx_lane_stat_entry_t	*total_stats;
2111 total_stats = calloc(1, sizeof (rx_lane_stat_entry_t));
2112 if (total_stats == NULL)
2115 total_stats->rle_index = DLSTAT_INVALID_ENTRY;
2116 total_stats->rle_id = DLSTAT_INVALID_ENTRY;
2118 total_stats->rle_stats.rl_ipackets =
2120 total_stats->rle_stats.rl_rbytes =
2123 total_stats->rle_stats.rl_intrs =
2125 total_stats->rle_stats.rl_intrbytes =
2128 total_stats->rle_stats.rl_polls =
2130 total_stats->rle_stats.rl_pollbytes =
2133 total_stats->rle_stats.rl_idrops =
2135 total_stats->rle_stats.rl_idropbytes =
2140 free(total_stats);
2146 total_head->dc_statentry = total_stats;
2160 tx_lane_stat_entry_t *total_stats;
2185 total_stats = calloc(1, sizeof (tx_lane_stat_entry_t));
2186 if (total_stats == NULL)
2189 total_stats->tle_index = DLSTAT_INVALID_ENTRY;
2190 total_stats->tle_id = DLSTAT_INVALID_ENTRY;
2192 total_stats->tle_stats.tl_opackets =
2194 total_stats->tle_stats.tl_obytes =
2197 total_stats->tle_stats.tl_odrops =
2199 total_stats->tle_stats.tl_odropbytes =
2204 free(total_stats);
2210 total_head->dc_statentry = total_stats;
2396 total_stat_entry_t *total_stats = NULL;
2425 total_stats = i_dlstat_ring_stats(modname);
2426 if (total_stats == NULL)
2437 total_stats->tse_stats.ts_ipackets;
2438 ring_stats->re_stats.r_bytes = total_stats->tse_stats.ts_rbytes;
2441 total_stats->tse_stats.ts_opackets;
2442 ring_stats->re_stats.r_bytes = total_stats->tse_stats.ts_obytes;
2460 free(total_stats);
2628 aggr_port_stat_entry_t *total_stats;
2630 total_stats = calloc(1, sizeof (aggr_port_stat_entry_t));
2631 if (total_stats == NULL)
2634 total_stats->ape_portlinkid = DATALINK_INVALID_LINKID;
2641 i_dlstat_sum_stats(&total_stats->ape_stats,
2642 &curr_aggr_port_stats->ape_stats, &total_stats->ape_stats,
2648 free(total_stats);
2652 total_head->dc_statentry = total_stats;
2738 dladm_stat_chain_t *total_stats;
2784 total_stats = dlstat_aggr_total_stats(head);
2785 if (total_stats != NULL) {
2786 total_stats->dc_next = head;
2787 head = total_stats;