Lines Matching refs:g_runstat
307 struct run_stat g_runstat; in PrintNetworkStats() local
376 memset(&g_runstat, 0, sizeof(struct run_stat)); in PrintNetworkStats()
381 g_runstat.rounds += rs.rounds; in PrintNetworkStats()
382 g_runstat.rounds_rx += rs.rounds_rx; in PrintNetworkStats()
383 g_runstat.rounds_rx_try += rs.rounds_rx_try; in PrintNetworkStats()
384 g_runstat.rounds_tx += rs.rounds_tx; in PrintNetworkStats()
385 g_runstat.rounds_tx_try += rs.rounds_tx_try; in PrintNetworkStats()
386 g_runstat.rounds_select += rs.rounds_select; in PrintNetworkStats()
387 g_runstat.rounds_select_rx += rs.rounds_select_rx; in PrintNetworkStats()
388 g_runstat.rounds_select_tx += rs.rounds_select_tx; in PrintNetworkStats()
396 g_runstat.rounds / 1000, g_runstat.rounds_rx / 1000, in PrintNetworkStats()
397 g_runstat.rounds_rx_try / 1000, g_runstat.rounds_tx / 1000, in PrintNetworkStats()
398 g_runstat.rounds_tx_try / 1000, g_runstat.rounds_select, in PrintNetworkStats()
399 g_runstat.rounds_select_rx, g_runstat.rounds_select_tx); in PrintNetworkStats()