Lines Matching refs:fragIndex

302                 uint8_t fragIndex = mcpsIndication->Buffer[cmdIndex++];  in LmhpFragmentationOnMcpsIndication()  local
303 uint8_t participants = fragIndex & 0x01; in LmhpFragmentationOnMcpsIndication()
305 fragIndex >>= 1; in LmhpFragmentationOnMcpsIndication()
306 FragSessionData[fragIndex].FragDecoderStatus = FragDecoderGetStatus( ); in LmhpFragmentationOnMcpsIndication()
309 … ( ( participants == 0 ) && ( FragSessionData[fragIndex].FragDecoderStatus.FragNbLost > 0 ) ) ) in LmhpFragmentationOnMcpsIndication()
312 …LmhpFragmentationState.DataBuffer[dataBufferIndex++] = FragSessionData[fragIndex].FragDecoderStatu… in LmhpFragmentationOnMcpsIndication()
313 LmhpFragmentationState.DataBuffer[dataBufferIndex++] = ( fragIndex << 6 ) | in LmhpFragmentationOnMcpsIndication()
314 … ( ( FragSessionData[fragIndex].FragDecoderStatus.FragNbRx >> 8 ) & 0x3F ); in LmhpFragmentationOnMcpsIndication()
315 …LmhpFragmentationState.DataBuffer[dataBufferIndex++] = FragSessionData[fragIndex].FragDecoderStatu… in LmhpFragmentationOnMcpsIndication()
316 …LmhpFragmentationState.DataBuffer[dataBufferIndex++] = FragSessionData[fragIndex].FragDecoderStatu… in LmhpFragmentationOnMcpsIndication()
319 … blockAckDelay = FragSessionData[fragIndex].FragGroupData.Control.Fields.BlockAckDelay; in LmhpFragmentationOnMcpsIndication()
433 uint8_t fragIndex = 0; in LmhpFragmentationOnMcpsIndication() local
439 fragIndex = ( fragCounter >> 14 ) & 0x03; in LmhpFragmentationOnMcpsIndication()
458 if( FragSessionData[fragIndex].FragDecoderProcessStatus == FRAG_SESSION_ONGOING ) in LmhpFragmentationOnMcpsIndication()
460 …FragSessionData[fragIndex].FragDecoderProcessStatus = FragDecoderProcess( fragCounter, &mcpsIndica… in LmhpFragmentationOnMcpsIndication()
461 FragSessionData[fragIndex].FragDecoderStatus = FragDecoderGetStatus( ); in LmhpFragmentationOnMcpsIndication()
464 … LmhpFragmentationParams->OnProgress( FragSessionData[fragIndex].FragDecoderStatus.FragNbRx, in LmhpFragmentationOnMcpsIndication()
465 … FragSessionData[fragIndex].FragGroupData.FragNb, in LmhpFragmentationOnMcpsIndication()
466 … FragSessionData[fragIndex].FragGroupData.FragSize, in LmhpFragmentationOnMcpsIndication()
467 … FragSessionData[fragIndex].FragDecoderStatus.FragNbLost ); in LmhpFragmentationOnMcpsIndication()
470 if( FragSessionData[fragIndex].FragDecoderProcessStatus >= 0 ) in LmhpFragmentationOnMcpsIndication()
473 FragSessionData[fragIndex].FragDecoderProcessStatus = FRAG_SESSION_NOT_STARTED; in LmhpFragmentationOnMcpsIndication()
477 … LmhpFragmentationParams->OnDone( FragSessionData[fragIndex].FragDecoderProcessStatus, in LmhpFragmentationOnMcpsIndication()
478 …( FragSessionData[fragIndex].FragGroupData.FragNb * FragSessionData[fragIndex].FragGroupData.FragS… in LmhpFragmentationOnMcpsIndication()
480 … LmhpFragmentationParams->OnDone( FragSessionData[fragIndex].FragDecoderProcessStatus, in LmhpFragmentationOnMcpsIndication()
482 …( FragSessionData[fragIndex].FragGroupData.FragNb * FragSessionData[fragIndex].FragGroupData.FragS… in LmhpFragmentationOnMcpsIndication()
486 cmdIndex += FragSessionData[fragIndex].FragGroupData.FragSize; in LmhpFragmentationOnMcpsIndication()