Lines Matching refs:bmp
1119 struct bitmap bmp; in MBi_CommParentSendData() local
1123 MI_CpuClear16(&bmp, sizeof(struct bitmap)); in MBi_CommParentSendData()
1132 bmp.connected |= (1 << child); in MBi_CommParentSendData()
1136 bmp.req |= (1 << child); in MBi_CommParentSendData()
1140 bmp.kick |= (1 << child); in MBi_CommParentSendData()
1147 bmp.boot |= (1 << child); in MBi_CommParentSendData()
1151 bmp.mem_full |= (1 << child); in MBi_CommParentSendData()
1163 if (bmp.boot) in MBi_CommParentSendData()
1165 errcode = MBi_CommParentSendMsg(MB_COMM_TYPE_PARENT_BOOTREQ, bmp.boot); in MBi_CommParentSendData()
1167 else if (bmp.connected) // Send entry request permitted message in MBi_CommParentSendData()
1169 errcode = MBi_CommParentSendMsg(MB_COMM_TYPE_PARENT_SENDSTART, bmp.connected); in MBi_CommParentSendData()
1171 else if (bmp.mem_full) // Send member exceeded message in MBi_CommParentSendData()
1173 errcode = MBi_CommParentSendMsg(MB_COMM_TYPE_PARENT_MEMBER_FULL, bmp.mem_full); in MBi_CommParentSendData()
1175 else if (bmp.kick) // Send entry denied message in MBi_CommParentSendData()
1177 errcode = MBi_CommParentSendMsg(MB_COMM_TYPE_PARENT_KICKREQ, bmp.kick); in MBi_CommParentSendData()
1179 else if (bmp.req) // Send MbDownloadFileInfo in MBi_CommParentSendData()