Lines Matching refs:gameInfo

699     brecvBuffp = (MbBeacon *) bssDescp->gameInfo.userGameInfo;  in MB_RecvGameInfoBeacon()
730 if ((bssDescp->gameInfo.magicNumber != WM_GAMEINFO_MAGIC_NUMBER) in MBi_CheckMBParent()
731 || !(bssDescp->gameInfo.attribute & WM_ATTR_FLAG_MB)) in MBi_CheckMBParent()
760 ((u16 *)bssDescp->ssid)[2] = bssDescp->gameInfo.tgid; in MBi_SetSSIDToBssDesc()
779 if (info->gameInfo.ggid != brecvBuffp->ggid) in MBi_GetStoreElement()
789 if (mbrsp->list[i].gameInfo.fileNo != brecvBuffp->fileNo) in MBi_GetStoreElement()
814 mbrsp->list[i].gameInfo.seqNoFixed = brecvBuffp->seqNoFixed; in MBi_GetStoreElement()
843 && (info->gameInfo.volat.nowPlayerFlag) in MBi_CheckCompleteGameInfoFragments()
844 && (info->getPlayerFlag == info->gameInfo.volat.nowPlayerFlag)) in MBi_CheckCompleteGameInfoFragments()
974 info->gameInfo.ggid = brecvBuffp->ggid; // Gets ggid. in MBi_AnalyzeBeacon()
975 info->gameInfo.fileNo = brecvBuffp->fileNo; // Gets fileNo. in MBi_AnalyzeBeacon()
978 MBi_SetSSIDToBssDesc(&info->bssDesc, info->gameInfo.ggid); in MBi_AnalyzeBeacon()
996 if (mbrsp->list[index].bssDesc.gameInfo.tgid == bssDescp->gameInfo.tgid) in MBi_CheckTGID()
1015 if (mbrsp->list[index].gameInfo.seqNoFixed == brecvBuffp->seqNoFixed) in MBi_CheckSeqNoFixed()
1023 mbrsp->list[index].gameInfo.seqNoFixed = brecvBuffp->seqNoFixed; in MBi_CheckSeqNoFixed()
1033 if (mbrsp->list[index].gameInfo.seqNoVolat != brecvBuffp->seqNoVolat) in MBi_CheckSeqNoVolat()
1068 u32 lastAddr = (u32)&grecvp->gameInfo + sizeof(MBGameInfoFixed); in MBi_RecvFixedBeacon()
1072 if (grecvp->gameInfo.seqNoFixed == brecvBuffp->seqNoFixed) in MBi_RecvFixedBeacon()
1083 dstp = (u8 *)&grecvp->gameInfo.fixed; in MBi_RecvFixedBeacon()
1087 dstp = (u8 *)&grecvp->gameInfo.fixed.parent; in MBi_RecvFixedBeacon()
1102 grecvp->gameInfo.dataAttr = brecvBuffp->dataAttr; in MBi_RecvFixedBeacon()
1119 grecvp->gameInfo.volat.userVolatData[i] = brecvBuffp->data.volat.userVolatData[i]; in MBi_RecvVolatBeacon()
1121 MI_CpuCopy16(brecvBuffp, &grecvp->bssDesc.gameInfo.userGameInfo, WM_SIZE_USER_GAMEINFO); in MBi_RecvVolatBeacon()
1124 if (grecvp->gameInfo.seqNoVolat != brecvBuffp->seqNoVolat) in MBi_RecvVolatBeacon()
1126 if ((u8)(grecvp->gameInfo.seqNoVolat + 1) == brecvBuffp->seqNoVolat) in MBi_RecvVolatBeacon()
1132 MI_CpuClear16(&grecvp->gameInfo.volat.member[i], sizeof(MBUserInfo)); in MBi_RecvVolatBeacon()
1140 MI_CpuClear16(&grecvp->gameInfo.volat.member[0], in MBi_RecvVolatBeacon()
1145 grecvp->gameInfo.seqNoVolat = brecvBuffp->seqNoVolat; in MBi_RecvVolatBeacon()
1153 grecvp->gameInfo.volat.nowPlayerNum = brecvBuffp->data.volat.nowPlayerNum; in MBi_RecvVolatBeacon()
1154 grecvp->gameInfo.volat.nowPlayerFlag = brecvBuffp->data.volat.nowPlayerFlag; in MBi_RecvVolatBeacon()
1155 grecvp->gameInfo.volat.changePlayerFlag = brecvBuffp->data.volat.changePlayerFlag; in MBi_RecvVolatBeacon()
1168 &grecvp->gameInfo.volat.member[playerNo - 1], sizeof(MBUserInfo)); in MBi_RecvVolatBeacon()
1238 MI_CpuClear16(&(mbrsp->list[index].gameInfo), sizeof(MBGameInfo)); in MB_DeleteRecvGameInfoWithoutBssdesc()
1295 MBGameInfo *gameInfo; in MB_SetUserVolatData() local
1300 gameInfo = mbss.gameInfoListTop; in MB_SetUserVolatData()
1301 if (gameInfo == NULL) in MB_SetUserVolatData()
1306 while (gameInfo->ggid != ggid) in MB_SetUserVolatData()
1308 if (gameInfo == NULL) in MB_SetUserVolatData()
1312 gameInfo = gameInfo->nextp; in MB_SetUserVolatData()
1322 gameInfo->volat.userVolatData[i] = userData[i]; in MB_SetUserVolatData()
1338 void *MB_GetUserVolatData(const WMGameInfo *gameInfo) in MB_GetUserVolatData() argument
1342 SDK_NULL_ASSERT(gameInfo); in MB_GetUserVolatData()
1344 if (!(gameInfo->attribute & WM_ATTR_FLAG_MB)) in MB_GetUserVolatData()
1349 beacon = (MbBeacon *) (gameInfo->userGameInfo); in MB_GetUserVolatData()