Lines Matching refs:p_Statistics

504 static t_Error TgecGetStatistics(t_Handle h_Tgec, t_FmMacStatistics *p_Statistics)
510 SANITY_CHECK_RETURN_ERROR(p_Statistics, E_NULL_POINTER);
515 p_Statistics->eStatPkts64 = GET_UINT64(p_TgecMemMap->R64);
516 p_Statistics->eStatPkts65to127 = GET_UINT64(p_TgecMemMap->R127);
517 p_Statistics->eStatPkts128to255 = GET_UINT64(p_TgecMemMap->R255);
518 p_Statistics->eStatPkts256to511 = GET_UINT64(p_TgecMemMap->R511);
519 p_Statistics->eStatPkts512to1023 = GET_UINT64(p_TgecMemMap->R1023);
520 p_Statistics->eStatPkts1024to1518 = GET_UINT64(p_TgecMemMap->R1518);
521 p_Statistics->eStatPkts1519to1522 = GET_UINT64(p_TgecMemMap->R1519X);
523 p_Statistics->eStatFragments = GET_UINT64(p_TgecMemMap->TRFRG);
524 p_Statistics->eStatJabbers = GET_UINT64(p_TgecMemMap->TRJBR);
526 p_Statistics->eStatsDropEvents = GET_UINT64(p_TgecMemMap->RDRP);
527 p_Statistics->eStatCRCAlignErrors = GET_UINT64(p_TgecMemMap->RALN);
529 p_Statistics->eStatUndersizePkts = GET_UINT64(p_TgecMemMap->TRUND);
530 p_Statistics->eStatOversizePkts = GET_UINT64(p_TgecMemMap->TROVR);
532 p_Statistics->reStatPause = GET_UINT64(p_TgecMemMap->RXPF);
533 p_Statistics->teStatPause = GET_UINT64(p_TgecMemMap->TXPF);
537 p_Statistics->ifInOctets = GET_UINT64(p_TgecMemMap->ROCT);
538 p_Statistics->ifInMcastPkts = GET_UINT64(p_TgecMemMap->RMCA);
539 p_Statistics->ifInBcastPkts = GET_UINT64(p_TgecMemMap->RBCA);
540 p_Statistics->ifInPkts = GET_UINT64(p_TgecMemMap->RUCA)
541 + p_Statistics->ifInMcastPkts
542 + p_Statistics->ifInBcastPkts;
543 p_Statistics->ifInDiscards = 0;
544 p_Statistics->ifInErrors = GET_UINT64(p_TgecMemMap->RERR);
546 p_Statistics->ifOutOctets = GET_UINT64(p_TgecMemMap->TOCT);
547 p_Statistics->ifOutMcastPkts = GET_UINT64(p_TgecMemMap->TMCA);
548 p_Statistics->ifOutBcastPkts = GET_UINT64(p_TgecMemMap->TBCA);
549 p_Statistics->ifOutPkts = GET_UINT64(p_TgecMemMap->TUCA);
550 p_Statistics->ifOutDiscards = 0;
551 p_Statistics->ifOutErrors = GET_UINT64(p_TgecMemMap->TERR);