Searched refs:a_mid_ifrow (Results 1 – 1 of 1) sorted by relevance
1590 MIB_IF_ROW2 a_mid_ifrow; in guest_get_network_stats() local1606 memset(&a_mid_ifrow, 0, sizeof(a_mid_ifrow)); in guest_get_network_stats()1607 a_mid_ifrow.InterfaceIndex = if_index; in guest_get_network_stats()1608 if (NO_ERROR == getifentry2_ex(&a_mid_ifrow)) { in guest_get_network_stats()1609 stats->rx_bytes = a_mid_ifrow.InOctets; in guest_get_network_stats()1610 stats->rx_packets = a_mid_ifrow.InUcastPkts; in guest_get_network_stats()1611 stats->rx_errs = a_mid_ifrow.InErrors; in guest_get_network_stats()1612 stats->rx_dropped = a_mid_ifrow.InDiscards; in guest_get_network_stats()1613 stats->tx_bytes = a_mid_ifrow.OutOctets; in guest_get_network_stats()1614 stats->tx_packets = a_mid_ifrow.OutUcastPkts; in guest_get_network_stats()[all …]