Home
last modified time | relevance | path

Searched refs:info (Results 1 – 25 of 59) sorted by relevance

123

/TwlSDK-5.1.0/build/libraries/gx/ARM9/src/
Dg3c.c42 void G3CS_Direct0(GXDLInfo *info, int op) in G3CS_Direct0() argument
44 SDK_NULL_ASSERT(info); in G3CS_Direct0()
47 if (op != G3OP_NOP && ((u32)info->curr_cmd & 0x3) != 0) in G3CS_Direct0()
49 info->param0_cmd_flg = TRUE; in G3CS_Direct0()
52 *info->curr_cmd = (u8)(op); // byte access in G3CS_Direct0()
68 void G3CS_Direct1(GXDLInfo *info, int op, u32 param0) in G3CS_Direct1() argument
70 SDK_NULL_ASSERT(info); in G3CS_Direct1()
73 info->param0_cmd_flg = FALSE; in G3CS_Direct1()
75 *info->curr_cmd = (u8)(op); // byte access in G3CS_Direct1()
76 *info->curr_param = param0; in G3CS_Direct1()
[all …]
Dg3b.c43 void G3BS_DirectN(GXDLInfo *info, int op, int nParams, const u32 *params) in G3BS_DirectN() argument
45 SDK_NULL_ASSERT(info); in G3BS_DirectN()
47 SDK_NULL_ASSERT(info->curr_param); in G3BS_DirectN()
48 SDK_ALIGN4_ASSERT(info->curr_cmd); in G3BS_DirectN()
51 *(u32 *)info->curr_cmd = (u32)op; in G3BS_DirectN()
55 *(info->curr_param + nParams) = *(params + nParams); in G3BS_DirectN()
71 void G3BS_LoadMtx44(GXDLInfo *info, const MtxFx44 *m) in G3BS_LoadMtx44() argument
73 SDK_NULL_ASSERT(info); in G3BS_LoadMtx44()
75 SDK_NULL_ASSERT(info->curr_param); in G3BS_LoadMtx44()
76 SDK_ALIGN4_ASSERT(info->curr_cmd); in G3BS_LoadMtx44()
[all …]
Dg3.c32 void G3_BeginMakeDL(GXDLInfo *info, void *ptr, u32 length) in G3_BeginMakeDL() argument
37 info->length = length; in G3_BeginMakeDL()
38 info->bottom = (u32 *)ptr; in G3_BeginMakeDL()
39 info->curr_cmd = (u8 *)ptr; in G3_BeginMakeDL()
40 info->curr_param = (u32 *)ptr + 1; in G3_BeginMakeDL()
41 info->param0_cmd_flg = FALSE; in G3_BeginMakeDL()
55 u32 G3_EndMakeDL(GXDLInfo *info) in G3_EndMakeDL() argument
58 if ((u8 *)info->bottom == info->curr_cmd) in G3_EndMakeDL()
64 switch ((u32)info->curr_cmd & 3) in G3_EndMakeDL()
68 SDK_ASSERT((u32)info->bottom < (u32)info->curr_cmd); in G3_EndMakeDL()
[all …]
Dg3_util.c330 void G3BS_LoadTexMtxTexCoord(GXDLInfo *info, const MtxFx44 *mtx) in G3BS_LoadTexMtxTexCoord() argument
333 SDK_NULL_ASSERT(info); in G3BS_LoadTexMtxTexCoord()
335 *(u32 *)info->curr_cmd = (u32)G3OP_MTX_MODE; in G3BS_LoadTexMtxTexCoord()
336 *info->curr_param = (u32)(GX_MTXMODE_TEXTURE << REG_G3_MTX_MODE_M_SHIFT); in G3BS_LoadTexMtxTexCoord()
337 *(info->curr_param + 1) = (u32)G3OP_MTX_LOAD_4x4; in G3BS_LoadTexMtxTexCoord()
339 G3xx_LoadTexMtxTexCoord_(info->curr_param, mtx); in G3BS_LoadTexMtxTexCoord()
356 void G3CS_LoadTexMtxTexCoord(GXDLInfo *info, const MtxFx44 *mtx) in G3CS_LoadTexMtxTexCoord() argument
358 SDK_NULL_ASSERT(info); in G3CS_LoadTexMtxTexCoord()
362 switch ((u32)info->curr_cmd & 3) in G3CS_LoadTexMtxTexCoord()
369 *info->curr_cmd++ = 0; // byte access in G3CS_LoadTexMtxTexCoord()
[all …]
/TwlSDK-5.1.0/include/nitro/gx/
Dg3b.h55 static void G3BS_Direct0(GXDLInfo *info, int op);
56 static void G3BS_Direct1(GXDLInfo *info, int op, u32 param0);
57 static void G3BS_Direct2(GXDLInfo *info, int op, u32 param0, u32 param1);
58 static void G3BS_Direct3(GXDLInfo *info, int op, u32 param0, u32 param1, u32 param2);
59 void G3BS_DirectN(GXDLInfo *info, int op, int nParams, const u32 *params);
61 static void G3BS_Nop(GXDLInfo *info);
62 static void G3BS_MtxMode(GXDLInfo *info, GXMtxMode mode);
63 static void G3BS_PushMtx(GXDLInfo *info);
64 static void G3BS_PopMtx(GXDLInfo *info, int num);
65 static void G3BS_StoreMtx(GXDLInfo *info, int num);
[all …]
Dg3c.h48 void G3CS_Direct0(GXDLInfo *info, int op);
49 void G3CS_Direct1(GXDLInfo *info, int op, u32 param0);
50 void G3CS_Direct2(GXDLInfo *info, int op, u32 param0, u32 param1);
51 void G3CS_Direct3(GXDLInfo *info, int op, u32 param0, u32 param1, u32 param2);
52 void G3CS_DirectN(GXDLInfo *info, int op, int nParams, const u32 *params);
54 static void G3CS_Nop(GXDLInfo *info);
55 static void G3CS_MtxMode(GXDLInfo *info, GXMtxMode mode);
56 static void G3CS_PushMtx(GXDLInfo *info);
57 static void G3CS_PopMtx(GXDLInfo *info, int num);
58 static void G3CS_StoreMtx(GXDLInfo *info, int num);
[all …]
Dg3_util.h52 void G3BS_LoadTexMtxTexCoord(GXDLInfo *info, const MtxFx44 *mtx);
53 void G3CS_LoadTexMtxTexCoord(GXDLInfo *info, const MtxFx44 *mtx);
54 void G3B_LoadTexMtxTexCoord(GXDLInfo *info, const MtxFx44 *mtx);
55 void G3C_LoadTexMtxTexCoord(GXDLInfo *info, const MtxFx44 *mtx);
56 void G3BS_LoadTexMtxEnv(GXDLInfo *info, const MtxFx44 *mtx);
57 void G3B_LoadTexMtxEnv(GXDLInfo *info, const MtxFx44 *mtx);
58 void G3CS_LoadTexMtxEnv(GXDLInfo *info, const MtxFx44 *mtx);
59 void G3C_LoadTexMtxEnv(GXDLInfo *info, const MtxFx44 *mtx);
Dg3.h587 void G3_BeginMakeDL(GXDLInfo *info, void *ptr, u32 length);
588 u32 G3_EndMakeDL(GXDLInfo *info);
589 static void *G3_GetDLStart(const GXDLInfo *info);
590 static u32 G3_GetDLLength(const GXDLInfo *info);
591 static u32 G3_GetDLSize(const GXDLInfo *info);
611 static inline void *G3_GetDLStart(const GXDLInfo *info) in G3_GetDLStart() argument
613 return (void *)info->bottom; in G3_GetDLStart()
626 static inline u32 G3_GetDLLength(const GXDLInfo *info) in G3_GetDLLength() argument
628 return info->length; in G3_GetDLLength()
641 static inline u32 G3_GetDLSize(const GXDLInfo *info) in G3_GetDLSize() argument
[all …]
/TwlSDK-5.1.0/build/libraries/snd/common/src/
Dsnd_alarm.c73 AlarmCallbackInfo *info; in SND_AlarmInit() local
75 info = &sCallbackTable[alarmNo]; in SND_AlarmInit()
77 info->func = NULL; in SND_AlarmInit()
78 info->arg = NULL; in SND_AlarmInit()
79 info->id = 0; in SND_AlarmInit()
213 AlarmCallbackInfo *info; in SNDi_IncAlarmId() local
217 info = &sCallbackTable[alarmNo]; in SNDi_IncAlarmId()
219 info->id++; in SNDi_IncAlarmId()
224 AlarmCallbackInfo *info; in SNDi_SetAlarmHandler() local
228 info = &sCallbackTable[alarmNo]; in SNDi_SetAlarmHandler()
[all …]
/TwlSDK-5.1.0/build/demos/wm/wmDEMOlib/src/
Dwm_tool.c61 void save_parentInfo(WMstartScanCallback *buf, WM_lib_param * param, childInfo * info) in save_parentInfo() argument
68 while (i < info->found_parent_count) in save_parentInfo()
70 if (buf->macAddress[0] == info->MacAdrList[i][0] && in save_parentInfo()
71 buf->macAddress[1] == info->MacAdrList[i][1] && in save_parentInfo()
72 buf->macAddress[2] == info->MacAdrList[i][2] && in save_parentInfo()
73 buf->macAddress[3] == info->MacAdrList[i][3] && in save_parentInfo()
74 buf->macAddress[4] == info->MacAdrList[i][4] && in save_parentInfo()
75 buf->macAddress[5] == info->MacAdrList[i][5]) in save_parentInfo()
78 ++info->find_counter[i]; // Increment the number of times found in save_parentInfo()
80 info->channelList[i] = buf->channel; // Update channel information in save_parentInfo()
[all …]
/TwlSDK-5.1.0/build/demos/gx/UnitTours/3D_Pol_MakeDL/src/
Dmain.c65 static void VtxB(GXDLInfo *info, int idx) in VtxB() argument
67 G3B_Vtx(info, gCubeGeometry[idx * 3], gCubeGeometry[idx * 3 + 1], gCubeGeometry[idx * 3 + 2]); in VtxB()
70 static void VtxC(GXDLInfo *info, int idx) in VtxC() argument
72 G3C_Vtx(info, gCubeGeometry[idx * 3], gCubeGeometry[idx * 3 + 1], gCubeGeometry[idx * 3 + 2]); in VtxC()
75 static void ColorB(GXDLInfo *info, int idx) in ColorB() argument
77 G3B_Color(info, gCubeColor[idx]); in ColorB()
80 static void ColorC(GXDLInfo *info, int idx) in ColorC() argument
82 G3C_Color(info, gCubeColor[idx]); in ColorC()
85 static void QuadB(GXDLInfo *info, int idx0, int idx1, int idx2, int idx3) in QuadB() argument
87 VtxB(info, idx0); in QuadB()
[all …]
/TwlSDK-5.1.0/build/libraries/os/common/src/
Dos_ownerInfo.c52 void OS_GetOwnerInfo(OSOwnerInfo *info) in OS_GetOwnerInfo() argument
57 info->language = (u8)(src->ncd.option.language); in OS_GetOwnerInfo()
58 info->favoriteColor = (u8)(src->ncd.owner.favoriteColor); in OS_GetOwnerInfo()
59 info->birthday.month = (u8)(src->ncd.owner.birthday.month); in OS_GetOwnerInfo()
60 info->birthday.day = (u8)(src->ncd.owner.birthday.day); in OS_GetOwnerInfo()
61 info->nickNameLength = (u16)(src->ncd.owner.nickname.length); in OS_GetOwnerInfo()
62 info->commentLength = (u16)(src->ncd.owner.comment.length); in OS_GetOwnerInfo()
64 info->nickName, OS_OWNERINFO_NICKNAME_MAX * sizeof(u16)); in OS_GetOwnerInfo()
65 MI_CpuCopy16(src->ncd.owner.comment.str, info->comment, OS_OWNERINFO_COMMENT_MAX * sizeof(u16)); in OS_GetOwnerInfo()
66 info->nickName[OS_OWNERINFO_NICKNAME_MAX] = 0; in OS_GetOwnerInfo()
[all …]
Dos_callTrace.c34 void OSi_DumpFullInfo(OSCallTraceInfo *info);
236 OSCallTraceInfo *info = OSi_GetCallTraceInfo(); in OS_ClearCallTraceBuffer() local
238 if (info && info->circular) in OS_ClearCallTraceBuffer()
242 info->current = info->array; in OS_ClearCallTraceBuffer()
243 for (p = info->current; p < info->limit; p++) in OS_ClearCallTraceBuffer()
266 OSCallTraceInfo *info = OSi_GetCallTraceInfo(); in OSi_SetCallTraceEntry() local
268 if (info && info->circular) in OSi_SetCallTraceEntry()
270 OSCallTrace *p = info->current; in OSi_SetCallTraceEntry()
289 if ((u32)p >= (u32)info->limit) in OSi_SetCallTraceEntry()
291 p = info->array; in OSi_SetCallTraceEntry()
[all …]
Dos_ownerInfoEx.c60 void OS_GetOwnerInfoEx(OSOwnerInfoEx *info) in OS_GetOwnerInfoEx() argument
68 info->favoriteColor = (u8)(src->ncd.owner.favoriteColor); in OS_GetOwnerInfoEx()
69 info->birthday.month = (u8)(src->ncd.owner.birthday.month); in OS_GetOwnerInfoEx()
70 info->birthday.day = (u8)(src->ncd.owner.birthday.day); in OS_GetOwnerInfoEx()
71 info->nickNameLength = (u16)(src->ncd.owner.nickname.length); in OS_GetOwnerInfoEx()
72 info->commentLength = (u16)(src->ncd.owner.comment.length); in OS_GetOwnerInfoEx()
74 info->nickName, OS_OWNERINFO_NICKNAME_MAX * sizeof(u16)); in OS_GetOwnerInfoEx()
75 MI_CpuCopy16(src->ncd.owner.comment.str, info->comment, OS_OWNERINFO_COMMENT_MAX * sizeof(u16)); in OS_GetOwnerInfoEx()
76 info->nickName[OS_OWNERINFO_NICKNAME_MAX] = 0; in OS_GetOwnerInfoEx()
77 info->comment[OS_OWNERINFO_COMMENT_MAX] = 0; in OS_GetOwnerInfoEx()
[all …]
Dos_interrupt.c63 OSIrqCallbackInfo *info; in OS_SetIrqFunction() local
69 info = NULL; in OS_SetIrqFunction()
74 info = &OSi_IrqCallbackInfo[i - REG_OS_IE_D0_SHIFT]; in OS_SetIrqFunction()
80 info = &OSi_IrqCallbackInfo[i - REG_OS_IE_ND0_SHIFT + OSi_IRQCALLBACK_NO_NDMA0]; in OS_SetIrqFunction()
86 info = &OSi_IrqCallbackInfo[i - REG_OS_IE_T0_SHIFT + OSi_IRQCALLBACK_NO_TIMER0]; in OS_SetIrqFunction()
92 info = &OSi_IrqCallbackInfo[OSi_IRQCALLBACK_NO_VBLANK]; in OS_SetIrqFunction()
101 if (info) in OS_SetIrqFunction()
103 info->func = (void (*)(void *))function; in OS_SetIrqFunction()
104 info->arg = 0; in OS_SetIrqFunction()
105 info->enable = TRUE; in OS_SetIrqFunction()
[all …]
/TwlSDK-5.1.0/include/nitro/spi/ARM9/
Dpm.h464 static inline void PM_SetSleepCallbackInfo(PMSleepCallbackInfo *info, PMSleepCallback callback, voi… in PM_SetSleepCallbackInfo() argument
466 info->callback = callback; in PM_SetSleepCallbackInfo()
467 info->arg = arg; in PM_SetSleepCallbackInfo()
479 void PM_AppendPreSleepCallback(PMSleepCallbackInfo *info);
490 void PM_PrependPreSleepCallback(PMSleepCallbackInfo *info);
501 void PM_AppendPostSleepCallback(PMSleepCallbackInfo *info);
512 void PM_PrependPostSleepCallback(PMSleepCallbackInfo *info);
524 void PM_InsertPreSleepCallback(PMSleepCallbackInfo *info, int priority);
536 void PM_InsertPostSleepCallback(PMSleepCallbackInfo *info, int priority);
547 void PM_DeletePreSleepCallback(PMSleepCallbackInfo *info);
[all …]
/TwlSDK-5.1.0/build/demos/wireless_shared/wh/
Dwh.c2600 void WH_PrintBssDesc(WMBssDesc *info) in WH_PrintBssDesc() argument
2602 #pragma unused( info ) in WH_PrintBssDesc()
2605 OS_TPrintf("length = 0x%04x\n", info->length); in WH_PrintBssDesc()
2606 OS_TPrintf("rssi = 0x%04x\n", info->rssi); in WH_PrintBssDesc()
2607 OS_TPrintf("bssid = %02x%02x%02x%02x%02x%02x\n", info->bssid[0], info->bssid[1], info->bssid[2], in WH_PrintBssDesc()
2608 info->bssid[3], info->bssid[4], info->bssid[5]); in WH_PrintBssDesc()
2609 OS_TPrintf("ssidLength = 0x%04x\n", info->ssidLength); in WH_PrintBssDesc()
2613 OS_TPrintf("0x%02x", info->ssid[i]); in WH_PrintBssDesc()
2616 OS_TPrintf("capaInfo = 0x%04x\n", info->capaInfo); in WH_PrintBssDesc()
2617 OS_TPrintf("rateSet.basic = 0x%04x\n", info->rateSet.basic); in WH_PrintBssDesc()
[all …]
/TwlSDK-5.1.0/build/demos/fs/overlay/src/
Dmain.c57 FSOverlayInfo info; in LoadOverlayMiddle() local
58 if (FS_LoadOverlayInfo(&info, target, id)) in LoadOverlayMiddle()
60 if (FS_LoadOverlayImage(&info)) in LoadOverlayMiddle()
62 FS_StartOverlay(&info); in LoadOverlayMiddle()
84 FSOverlayInfo info; in LoadOverlayLow() local
85 if (FS_LoadOverlayInfo(&info, target, id)) in LoadOverlayLow()
89 (void)FS_LoadOverlayImageAsync(&info, &file); in LoadOverlayLow()
92 FS_StartOverlay(&info); in LoadOverlayLow()
/TwlSDK-5.1.0/build/libraries/scfg/ARM9.TWL/src/
Dscfg_proc.c259 volatile SCFGiDataForSync info; in SCFG_ReadFuseData() local
261 info.flag = FALSE; in SCFG_ReadFuseData()
262 if ( SCFG_ReadFuseDataAsync( SCFGi_Sync, (void*)&info ) ) in SCFG_ReadFuseData()
264 while( info.flag == FALSE ) in SCFG_ReadFuseData()
267 return info.data; in SCFG_ReadFuseData()
320 volatile SCFGiDataForSync info; in SCFG_ReadBondingOption() local
322 info.flag = FALSE; in SCFG_ReadBondingOption()
323 if ( SCFG_ReadBondingOptionAsync( SCFGi_Sync, (void*)&info ) ) in SCFG_ReadBondingOption()
325 while ( info.flag == FALSE ) in SCFG_ReadBondingOption()
328 return *(u16*)(&info.data); in SCFG_ReadBondingOption()
/TwlSDK-5.1.0/build/libraries/spi/ARM9/src/
Dpm.c89 static void PMi_InsertList(PMGenCallbackInfo **listp, PMGenCallbackInfo *info, int priority, int me…
90 static void PMi_DeleteList(PMGenCallbackInfo **listp, PMGenCallbackInfo *info);
1846 static void PMi_InsertList(PMGenCallbackInfo **listp, PMGenCallbackInfo *info, int priority, int me… in PMi_InsertList() argument
1857 info->priority = priority; in PMi_InsertList()
1881 info->next = p; in PMi_InsertList()
1885 info->next = NULL; in PMi_InsertList()
1891 pre->next = info; in PMi_InsertList()
1896 *listp = info; in PMi_InsertList()
1913 static void PMi_DeleteList(PMGenCallbackInfo **listp, PMGenCallbackInfo *info) in PMi_DeleteList() argument
1929 if (p == info) in PMi_DeleteList()
[all …]
/TwlSDK-5.1.0/build/libraries/card/common/src/
Dcard_rom.c442 CARDTransferInfo *info = CARDiDmaReadRegisteredInfo; in CARDi_DmaReadPageCallback() local
443 if (info) in CARDi_DmaReadPageCallback()
445 info->src += CARD_ROM_PAGE_SIZE; in CARDi_DmaReadPageCallback()
446 info->dst += CARD_ROM_PAGE_SIZE; in CARDi_DmaReadPageCallback()
447 info->len -= CARD_ROM_PAGE_SIZE; in CARDi_DmaReadPageCallback()
449 if (info->len > 0) in CARDi_DmaReadPageCallback()
451 CARDi_StartRomPageTransfer(info->src); in CARDi_DmaReadPageCallback()
460 if (info->callback) in CARDi_DmaReadPageCallback()
462 (*info->callback)(info->userdata); in CARDi_DmaReadPageCallback()
478 void CARDi_ReadRomWithDMA(CARDTransferInfo *info) in CARDi_ReadRomWithDMA() argument
[all …]
/TwlSDK-5.1.0/build/libraries/mi/common/src/
Dmi_compress.c255 static void LZInitTable(LZCompressInfo * info, u8 *work);
256 static void SlideByte(LZCompressInfo * info, const u8 *srcp);
257 static inline void LZSlide(LZCompressInfo * info, const u8 *srcp, u32 n);
258 static u32 SearchLZFast(LZCompressInfo * info, const u8 *nextp, u32 remainSize, u16 *offset, u32 ma…
264 static void LZInitTable(LZCompressInfo * info, u8 *work) in LZInitTable() argument
268 info->LZOffsetTable = (s16 *)work; in LZInitTable()
269 info->LZByteTable = (s16 *)work + 4096; in LZInitTable()
270 info->LZEndTable = (s16 *)work + 4096 + 256; in LZInitTable()
274 info->LZByteTable[i] = -1; in LZInitTable()
275 info->LZEndTable[i] = -1; in LZInitTable()
[all …]
/TwlSDK-5.1.0/include/twl/fatfs/common/
Dapi.h193 BOOL FATFS_CheckDisk(const char *name, FATFSDiskInfo *info, BOOL verbose, BOOL fixProblems, BOOL wr…
230 BOOL FATFS_GetFileInfo(const char *path, FATFSFileInfo *info);
242 BOOL FATFS_SetFileInfo(const char *path, const FATFSFileInfo *info);
456 BOOL FATFS_ReadDirectory(FATFSDirectoryHandle dir, FATFSFileInfo *info);
545 BOOL FATFS_GetFileInfoW(const u16 *path, FATFSFileInfoW *info);
557 BOOL FATFS_SetFileInfoW(const u16 *path, const FATFSFileInfoW *info);
664 BOOL FATFS_ReadDirectoryW(FATFSDirectoryHandle dir, FATFSFileInfoW *info);
/TwlSDK-5.1.0/build/libraries/fs/common/src/
Dfs_file.c400 BOOL FS_GetPathInfo(const char *path, FSPathInfo *info) in FS_GetPathInfo() argument
405 SDK_NULL_ASSERT(info); in FS_GetPathInfo()
420 arg->info = info; in FS_GetPathInfo()
437 BOOL FS_SetPathInfo(const char *path, const FSPathInfo *info) in FS_SetPathInfo() argument
442 SDK_NULL_ASSERT(info); in FS_SetPathInfo()
457 … arg->info = (FSPathInfo*)info; //In order to drop FATFS_PROPERTY_CTRL_MASK of info->attributes in FS_SetPathInfo()
641 FSPathInfo info[1]; in FSi_ComplementDirectory() local
644 exists = FS_GetPathInfo(tmppath, info); in FSi_ComplementDirectory()
657 if ((info->attributes & FS_ATTRIBUTE_IS_DIRECTORY) == 0) in FSi_ComplementDirectory()
848 FSDirectoryEntryInfo info[1]; in FS_DeleteDirectoryAuto() local
[all …]
/TwlSDK-5.1.0/build/libraries/mb/common/src/
Dmb_gameinfo.c772 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()
[all …]

123