Lines Matching refs:info
772 MBGameInfoRecvList *info = &mbrsp->list[i]; in MBi_GetStoreElement() local
779 if (info->gameInfo.ggid != brecvBuffp->ggid) in MBi_GetStoreElement()
784 if (!WM_IsBssidEqual(info->bssDesc.bssid, bssDescp->bssid)) in MBi_GetStoreElement()
835 MBGameInfoRecvList *info = &mbrsp->list[index]; in MBi_CheckCompleteGameInfoFlagments() local
840 Callbackp(MB_BC_MSG_GINFO_BEACON, info, index); in MBi_CheckCompleteGameInfoFlagments()
842 …if ((info->getFlagmentFlag == info->allFlagmentFlag) && (info->getFlagmentFlag) // If the new … in MBi_CheckCompleteGameInfoFlagments()
843 && (info->gameInfo.volat.nowPlayerFlag) in MBi_CheckCompleteGameInfoFlagments()
844 && (info->getPlayerFlag == info->gameInfo.volat.nowPlayerFlag)) in MBi_CheckCompleteGameInfoFlagments()
856 Callbackp(MB_BC_MSG_GINFO_VALIDATED, info, index); in MBi_CheckCompleteGameInfoFlagments()
869 Callbackp(MB_BC_MSG_GINFO_INVALIDATED, info, index); in MBi_CheckCompleteGameInfoFlagments()
884 MBGameInfoRecvList *info = &mbrsp->list[i]; in MB_CountGameInfoLifetime() local
891 info->lifetimeCount -= mbrsp->scanCountUnit; in MB_CountGameInfoLifetime()
892 if (info->lifetimeCount >= 0) in MB_CountGameInfoLifetime()
896 info->lifetimeCount = 0; in MB_CountGameInfoLifetime()
901 Callbackp(MB_BC_MSG_GINFO_LOST, info, i); in MB_CountGameInfoLifetime()
954 MBGameInfoRecvList *info = &mbrsp->list[index]; in MBi_AnalyzeBeacon() local
957 if (info->beaconNo == brecvBuffp->beaconNo) in MBi_AnalyzeBeacon()
959 if (++info->sameBeaconRecvCount > MB_SAME_BEACON_RECV_MAX_COUNT) in MBi_AnalyzeBeacon()
961 …info->lifetimeCount = 0; // Sets the lifetime of the parent information to zero so it gets … in MBi_AnalyzeBeacon()
963 MBi_InvalidateGameInfoBssID(&info->bssDesc.bssid[0]); in MBi_AnalyzeBeacon()
969 info->sameBeaconRecvCount = 0; in MBi_AnalyzeBeacon()
972 info->beaconNo = brecvBuffp->beaconNo; in MBi_AnalyzeBeacon()
973 …info->lifetimeCount = MB_LIFETIME_MAX_COUNT; // Extends the lifetime of the parent's informatio… in MBi_AnalyzeBeacon()
974 info->gameInfo.ggid = brecvBuffp->ggid; // Gets ggid. in MBi_AnalyzeBeacon()
975 info->gameInfo.fileNo = brecvBuffp->fileNo; // Gets fileNo. in MBi_AnalyzeBeacon()
976 info->linkLevel = linkLevel; // Gets the signal strength. in MBi_AnalyzeBeacon()
978 MBi_SetSSIDToBssDesc(&info->bssDesc, info->gameInfo.ggid); in MBi_AnalyzeBeacon()