亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? statistic.c

?? CBS(小區廣播)程序實現手稿
?? C
?? 第 1 頁 / 共 5 頁
字號:
			memcpy(&ProcessData[s_Pid.iProcessId][sizeof(MESSAGE_STATISTIC_t)],&s_CBSEStatisticResult,
				s_CBSEStatisticResult.cNumber*sizeof(STATTYPE_COUNT_t)+1);

			/* 返回一次統計結果 */
			memset(&s_CBEMessage,0,sizeof(CBEMESSAGE_t));
			s_CBEMessage.s_MessageHead.iMessageAreaId=C;
			memcpy(&s_CBEMessage.s_MessageHead.s_ReceiverPid,&LpMessageStatistic->s_StatMessageHead.s_SenderPid,sizeof(PID_t));
			memcpy(&s_CBEMessage.s_MessageHead.s_SenderPid,&s_Pid,sizeof(PID_t));
			s_CBEMessage.s_MessageHead.iMessageType=LpMessageStatistic->s_StatMessageHead.iMessageType;
			s_CBEMessage.s_MessageHead.iMessageLength=i*sizeof(STATTYPE_COUNT_t)+1+ilen;
			s_CBEMessage.iLen=s_CBEMessage.s_MessageHead.iMessageLength+sizeof(MESSAGE_HEAD_t);			

			/* 將統計請求也返回 */
			if (LpMessageStatistic->StatCounter==0)
			{
				LpMessageStatistic->StatCounter=255;
    			memcpy(&s_CBEMessage.cMessage[0],&LpMessageStatistic->StatSerialId[0],ilen);
				LpMessageStatistic->StatCounter=0;
			}
			else
			{
    			memcpy(&s_CBEMessage.cMessage[0],&LpMessageStatistic->StatSerialId[0],ilen);
			}

			memcpy(&s_CBEMessage.cMessage[ilen],&s_CBSEStatisticResult,s_CBEMessage.s_MessageHead.iMessageLength-ilen);

			AppendCBESendMessage(&s_CBEMessage);

			/* 是否結束統計 */
			if (LpMessageStatistic->StatCounter>0)
			{
				LpMessageStatistic->StatCounter--;
				if (LpMessageStatistic->StatCounter==0)
				{
					return END;
				}
			}

			/* 開始下一次統計 */
			i=0;

	        /* 寫入 */
			s_CBSEStatisticResult.s_StattypeCount[i].cStatisticType=WRITE_STATISTIC;
			s_CBSEStatisticResult.s_StattypeCount[i].iCount=
				s_CBSECount.s_ReqBSCCnt[Tid].iCBCProxyWriteReqCnt ;
			i++;
            /* 替換 */
			s_CBSEStatisticResult.s_StattypeCount[i].cStatisticType=REPLACE_STATISTIC;
			s_CBSEStatisticResult.s_StattypeCount[i].iCount=
				s_CBSECount.s_ReqBSCCnt[Tid].iCBCProxyReplaceReqCnt ;
			i++;
			/* 刪除 */
			s_CBSEStatisticResult.s_StattypeCount[i].cStatisticType=KILL_STATISTIC;
			s_CBSEStatisticResult.s_StattypeCount[i].iCount= 
				s_CBSECount.s_ReqBSCCnt[Tid].iCBCProxyKillReqCnt;
			i++;
            /* 消息狀態查詢查詢 */
			s_CBSEStatisticResult.s_StattypeCount[i].cStatisticType=QUERY_STATISTIC;
			s_CBSEStatisticResult.s_StattypeCount[i].iCount= 
				s_CBSECount.s_ReqBSCCnt[Tid].iCBCProxyMsgQueryCnt;
			i++;
            /* 小區信道負荷查詢 */ 
			s_CBSEStatisticResult.s_StattypeCount[i].cStatisticType=CBCH_STATISTIC;
			s_CBSEStatisticResult.s_StattypeCount[i].iCount= 
				s_CBSECount.s_ReqBSCCnt[Tid].iCBCProxyCBCHReqCnt;
			i++;

            /* 小區重啟 */ 
			s_CBSEStatisticResult.s_StattypeCount[i].cStatisticType=RESET_STATISTIC;
			s_CBSEStatisticResult.s_StattypeCount[i].iCount= 
				s_CBSECount.s_ReqBSCCnt[Tid].iCBCProxyResetCnt;
			i++;

			s_CBSEStatisticResult.cNumber=i;

			memcpy(&ProcessData[s_Pid.iProcessId][sizeof(MESSAGE_STATISTIC_t)],&s_CBSEStatisticResult,s_CBSEStatisticResult.cNumber*sizeof(STATTYPE_COUNT_t)+1);

			/* 創建統計定時器 */
			iReturnValue=create_timer(LpMessageStatistic->StatTimeLength*1000,
				STATISTIC_TIMER,(char *)&s_Pid,NULL);
			/* 創建定時器失敗 */
			if (iReturnValue<0)
			{
				printf("Create timer Error!\n");
				/* 結束統計進程 */
				return END;
			}
			memcpy(&ProcessData[s_Pid.iProcessId][LPCB_DATA_SIZE-sizeof(int)],&iReturnValue,sizeof(int));
		}
		break;
	case CELL_CBSE_CNT:     /* 小區服務元素的統計,包括成功和失敗 */
		{
    		/* 取出小區在系統中的位置,在進程尾部 */
			memcpy(&i,&ProcessData[s_Pid.iProcessId][LPCB_DATA_SIZE-16],4);
			memcpy(&j,&ProcessData[s_Pid.iProcessId][LPCB_DATA_SIZE-12],4);
			memcpy(&k,&ProcessData[s_Pid.iProcessId][LPCB_DATA_SIZE-8],4);

			/* 如果小區被修改,被刪除,或位置發生變化 */
			if(memcmp(&LpMessageStatistic->cCellId[0],
				&s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].cCellId[0],4)!=0)
			{
				IfCellExist=0;
				/* 查找該小區 */
				for(i=0;i<MAX_BSC_CONNECT;i++)
				{
					if (s_BSCCellInfo[i].bFlag==1)
					{
  						for(j=0;j<s_BSCCellInfo[i].cNumberOfBTS;j++)
						{
							for(k=0;k<s_BSCCellInfo[i].s_BTSCellInfo[j].cNumberOfCell;k++)
							{
								if(memcmp(&LpMessageStatistic->cCellId[0],
									&s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].cCellId[0],4)==0)
								{
									/* 記下小區在系統中的位置,記在進程尾部 */
									memcpy(&ProcessData[s_Pid.iProcessId][LPCB_DATA_SIZE-16],&i,4);
									memcpy(&ProcessData[s_Pid.iProcessId][LPCB_DATA_SIZE-12],&j,4);
									memcpy(&ProcessData[s_Pid.iProcessId][LPCB_DATA_SIZE-8],&k,4);
									IfCellExist=EXIST;
									/* 跳出循環 */
									goto L_out;
								}
							}
						}
					}
				}

L_out:
				/* 找不到該小區 */
				if(IfCellExist==0)
				{
					return END;				
				}
			}

			memset(&s_CellCBSEStatisticResult,0,sizeof(CELL_CBSE_STATISTIC_RESULT_t));
//			memcpy(&s_CellCBSEStatisticResult,&ProcessData[s_Pid.iProcessId][sizeof(MESSAGE_STATISTIC_t)],s_CellCBSEStatisticResult.cNumber*sizeof(CELL_STATTYPE_COUNT_t)+1);
			
			memcpy(&s_CellCBSEStatisticResult,&ProcessData[s_Pid.iProcessId][sizeof(MESSAGE_STATISTIC_t)],ProcessData[s_Pid.iProcessId][sizeof(MESSAGE_STATISTIC_t)]*sizeof(CELL_STATTYPE_COUNT_t)+1);

			s_CellCBSEStatisticResult.cNumber=0;

			/* 寫入 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].cStatisticType=WRITE_STATISTIC;
			/* 發送總數 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSendCount=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_WriteCount.iSendCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSendCount;
			/* 成功總數 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSuccessCount=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_WriteCount.iSuccessCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSuccessCount;
			/* 基站系統負荷超載 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibsscapErr=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_WriteCount.ibsscapErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibsscapErr;
			/* 小區內存溢出	 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].icellmemErr=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_WriteCount.icellmemErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].icellmemErr;
			/* 基站系統內存溢出	 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibssmemErr=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_WriteCount.ibssmemErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibssmemErr;
			/* 其他錯誤 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iotherErr=
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSendCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSuccessCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibsscapErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].icellmemErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibssmemErr;
	
			s_CellCBSEStatisticResult.cNumber++;
    
            /* 替換 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].cStatisticType=REPLACE_STATISTIC;
			/* 發送總數 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSendCount=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_ReplaceCount.iSendCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSendCount;
			/* 成功總數 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSuccessCount=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_ReplaceCount.iSuccessCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSuccessCount;
			/* 基站系統負荷超載 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibsscapErr=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_ReplaceCount.ibsscapErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibsscapErr;
			/* 小區內存溢出	 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].icellmemErr=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_ReplaceCount.icellmemErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].icellmemErr;
			/* 基站系統內存溢出	 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibssmemErr=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_ReplaceCount.ibssmemErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibssmemErr;
			/* 其他錯誤 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iotherErr=
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSendCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSuccessCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibsscapErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].icellmemErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibssmemErr;
			s_CellCBSEStatisticResult.cNumber++;
			
			/* 刪除 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].cStatisticType=KILL_STATISTIC;
			/* 發送總數 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSendCount=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_KillCount.iSendCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSendCount;
			/* 成功總數 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSuccessCount=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_KillCount.iSuccessCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSuccessCount;
			/* 基站系統負荷超載 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibsscapErr=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_KillCount.ibsscapErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibsscapErr;
			/* 小區內存溢出	 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].icellmemErr=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_KillCount.icellmemErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].icellmemErr;
			/* 基站系統內存溢出	 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibssmemErr=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_KillCount.ibssmemErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibssmemErr;
			/* 其他錯誤 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iotherErr=
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSendCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSuccessCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibsscapErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].icellmemErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibssmemErr;
			s_CellCBSEStatisticResult.cNumber++;
			
			
            /* 消息狀態查詢查詢 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].cStatisticType=QUERY_STATISTIC;
			/* 發送總數 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSendCount=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_QueryCount.iSendCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSendCount;
			/* 成功總數 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSuccessCount=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_QueryCount.iSuccessCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSuccessCount;
			/* 基站系統負荷超載 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibsscapErr=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_QueryCount.ibsscapErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibsscapErr;
			/* 小區內存溢出	 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].icellmemErr=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_QueryCount.icellmemErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].icellmemErr;
			/* 基站系統內存溢出	 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibssmemErr=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_QueryCount.ibssmemErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibssmemErr;
			/* 其他錯誤 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iotherErr=
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSendCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSuccessCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibsscapErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].icellmemErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibssmemErr;
			
			s_CellCBSEStatisticResult.cNumber++;

			
            /* 小區信道負荷查詢 */ 
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].cStatisticType=CBCH_STATISTIC;
			/* 發送總數 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSendCount=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_CBCHCount.iSendCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSendCount;
			/* 成功總數 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSuccessCount=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_CBCHCount.iSuccessCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSuccessCount;
			/* 基站系統負荷超載 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibsscapErr=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_CBCHCount.ibsscapErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibsscapErr;
			/* 小區內存溢出	 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].icellmemErr=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_CBCHCount.icellmemErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].icellmemErr;
			/* 基站系統內存溢出	 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibssmemErr=
				s_BSCCellInfo[i].s_BTSCellInfo[j].s_CellId[k].s_CBCHCount.ibssmemErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibssmemErr;
			/* 其他錯誤 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iotherErr=
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSendCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].iSuccessCount-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibsscapErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].icellmemErr-
				s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].ibssmemErr;

			s_CellCBSEStatisticResult.cNumber++;
	
			/* 返回一次統計結果 */
			memset(&s_CBEMessage,0,sizeof(CBEMESSAGE_t));
			s_CBEMessage.s_MessageHead.iMessageAreaId=C;
			memcpy(&s_CBEMessage.s_MessageHead.s_ReceiverPid,&LpMessageStatistic->s_StatMessageHead.s_SenderPid,sizeof(PID_t));
			memcpy(&s_CBEMessage.s_MessageHead.s_SenderPid,&s_Pid,sizeof(PID_t));
			s_CBEMessage.s_MessageHead.iMessageType=LpMessageStatistic->s_StatMessageHead.iMessageType;
			s_CBEMessage.s_MessageHead.iMessageLength=s_CellCBSEStatisticResult.cNumber*sizeof(CELL_STATTYPE_COUNT_t)+1+ilen;
			s_CBEMessage.iLen=s_CBEMessage.s_MessageHead.iMessageLength+sizeof(MESSAGE_HEAD_t);			
			
			/* 將統計請求也返回 */
			if (LpMessageStatistic->StatCounter==0)
			{
				LpMessageStatistic->StatCounter=255;
    			memcpy(&s_CBEMessage.cMessage[0],&LpMessageStatistic->StatSerialId[0],ilen);
				LpMessageStatistic->StatCounter=0;
			}
			else
			{
    			memcpy(&s_CBEMessage.cMessage[0],&LpMessageStatistic->StatSerialId[0],ilen);
			}


			memcpy(&s_CBEMessage.cMessage[ilen],&s_CellCBSEStatisticResult,s_CBEMessage.s_MessageHead.iMessageLength-ilen);

			AppendCBESendMessage(&s_CBEMessage);

			/* 是否結束統計 */
			if (LpMessageStatistic->StatCounter>0)
			{
				LpMessageStatistic->StatCounter--;
				if (LpMessageStatistic->StatCounter==0)
				{
					return END;
				}
			}

			/* 開始下一次統計 */
			memset(&s_CellCBSEStatisticResult,0,sizeof(CELL_CBSE_STATISTIC_RESULT_t));   

			s_CellCBSEStatisticResult.cNumber=0;

			/* 寫入 */
			s_CellCBSEStatisticResult.s_StattypeCount[s_CellCBSEStatisticResult.cNumber].cStatisticType=WRITE_STATISTIC;
			/* 發送總數 */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
无码av中文一区二区三区桃花岛| 亚洲3atv精品一区二区三区| 免费成人在线播放| 国产91对白在线观看九色| 亚洲天堂福利av| 成人黄色免费短视频| 337p粉嫩大胆噜噜噜噜噜91av| 亚洲国产aⅴ天堂久久| 91香蕉视频黄| 欧美精品一区二区三区很污很色的| 亚洲一区二区三区四区在线观看| 日本黄色一区二区| 亚洲国产精品久久不卡毛片| 欧美亚洲丝袜传媒另类| 亚洲午夜免费福利视频| 欧美日韩精品专区| 麻豆国产一区二区| 久久久影视传媒| 91碰在线视频| 日韩电影免费一区| 中文字幕国产一区二区| 99国产精品久久久久| 亚洲影视在线观看| 日韩一区二区免费视频| 国产综合久久久久久鬼色 | 一区在线观看视频| 91啪亚洲精品| 国产在线播放一区| 国产香蕉久久精品综合网| 蜜桃精品在线观看| 亚洲欧洲av一区二区三区久久| 91小视频在线免费看| 韩国v欧美v日本v亚洲v| 亚洲精品视频观看| 日韩午夜av一区| 在线免费观看成人短视频| 久久狠狠亚洲综合| 尤物在线观看一区| 久久―日本道色综合久久| 波多野结衣亚洲一区| 日韩精品色哟哟| 国产精品久久久久影院亚瑟| 欧美久久久久免费| 91麻豆自制传媒国产之光| 国产一区在线观看麻豆| 亚洲国产精品久久人人爱| 色老头久久综合| 国产白丝精品91爽爽久久| 午夜精品久久久久久久久| 亚洲欧美区自拍先锋| 中文字幕一区二区三中文字幕| 日韩欧美亚洲一区二区| 欧美性大战xxxxx久久久| 色综合久久综合网97色综合| www.日韩精品| 91污片在线观看| 99riav一区二区三区| 成人一区在线观看| 成人午夜av影视| 美女免费视频一区| 极品少妇一区二区三区精品视频| 亚洲国产欧美日韩另类综合| 亚洲男人的天堂av| 一区二区三区四区av| 亚洲v精品v日韩v欧美v专区| 亚洲丰满少妇videoshd| 日韩成人精品视频| 五月激情综合色| 久88久久88久久久| 成人在线视频一区| 欧美少妇性性性| 91视视频在线观看入口直接观看www | 亚洲成人中文在线| 三级亚洲高清视频| 亚洲aaa精品| 成人美女视频在线看| 成人av网址在线| 欧美丝袜第三区| 国产色综合一区| 亚洲成av人片一区二区| 久久草av在线| 99精品国产91久久久久久| 欧美肥妇free| 国产精品久久久久久福利一牛影视 | 亚洲欧美色一区| 日本强好片久久久久久aaa| 成人免费看黄yyy456| 91精品国产欧美一区二区成人| 久久久亚洲高清| 日韩精品电影在线| 麻豆精品视频在线观看免费| 91美女福利视频| 久久精品亚洲国产奇米99| 日本中文字幕一区二区有限公司| 成人福利在线看| 日韩免费一区二区| 调教+趴+乳夹+国产+精品| 91免费国产在线| 国产精品美女久久久久久久久久久| 日本特黄久久久高潮| 欧美日韩国产首页| 一区av在线播放| 欧美性xxxxxxxx| 亚洲一区二区在线免费看| 欧美体内she精高潮| 亚洲猫色日本管| 91亚洲永久精品| 亚洲精品亚洲人成人网| 91在线无精精品入口| 国产精品高清亚洲| 91在线精品一区二区三区| 中文av一区二区| 91麻豆精东视频| 国产精品伦一区二区三级视频| 精品在线观看视频| 国产日韩一级二级三级| 成人激情小说网站| 亚洲欧洲av在线| 色猫猫国产区一区二在线视频| 一区二区三区毛片| 欧美电影免费观看高清完整版| 国产高清视频一区| 亚洲色欲色欲www| 欧美电影免费观看高清完整版在线 | 亚洲日本青草视频在线怡红院| 欧美丝袜第三区| 国产成人自拍高清视频在线免费播放 | 日韩在线卡一卡二| 日韩三级中文字幕| 91小视频免费看| 国产风韵犹存在线视精品| 亚洲自拍欧美精品| 国产欧美日韩三区| 欧美成人午夜电影| 91精品1区2区| 风间由美一区二区av101| 日韩在线观看一区二区| 亚洲久草在线视频| 欧美极品另类videosde| 91久久一区二区| 国产成人精品一区二区三区四区 | 在线观看视频一区二区欧美日韩 | 欧美一区二区三区免费在线看 | 久久国产精品区| 亚洲第一av色| 一级做a爱片久久| 亚洲精品视频在线观看网站| 国产欧美精品一区二区色综合| 欧美一级久久久久久久大片| 欧美色视频一区| 成人国产精品免费观看视频| 国产精品资源网站| 国产盗摄一区二区三区| 国产一区二区导航在线播放| 日本不卡视频在线| 午夜亚洲福利老司机| 亚洲线精品一区二区三区| 一区二区三区四区乱视频| 亚洲一区二区偷拍精品| 亚洲午夜私人影院| 丝袜美腿亚洲一区二区图片| 午夜视频在线观看一区二区| 日韩精品91亚洲二区在线观看| 日本欧美一区二区| 激情小说欧美图片| 天天色天天操综合| 五月婷婷激情综合网| 亚洲女人的天堂| 午夜伊人狠狠久久| 国产成+人+日韩+欧美+亚洲| 一本高清dvd不卡在线观看| 欧美色窝79yyyycom| 337p日本欧洲亚洲大胆色噜噜| 中文字幕欧美日韩一区| 亚洲制服丝袜一区| 久久激情综合网| 懂色av一区二区在线播放| 欧美三级电影网| 国产精品久久午夜| 六月丁香婷婷久久| 欧美亚日韩国产aⅴ精品中极品| 欧美三级视频在线观看| 国产亚洲成年网址在线观看| 亚洲成人777| 成人av网址在线| 亚洲精品一线二线三线| 亚洲欧洲在线观看av| 午夜视频一区在线观看| 色综合久久天天| 亚洲欧美一区二区在线观看| 国产精品中文字幕日韩精品| 3atv一区二区三区| 夜夜精品视频一区二区| 亚洲成人av福利| 91福利小视频| 亚洲精品国产精华液| 国产aⅴ综合色| 国产欧美日韩亚州综合| 国产999精品久久| 欧美激情资源网|