Home | History | Annotate | Download | only in Sta_Management

Lines Matching full:celltp

1431 TI_STATUS mlmeParser_readCellTP(mlme_t *pMlme, TI_UINT8 *pData, TI_UINT32 dataLen, TI_UINT32 *pReadLen, dot11_CELL_TP_t *cellTP)
1435 cellTP->hdr[0] = *pData++;
1436 cellTP->hdr[1] = *pData++;
1438 *pReadLen = cellTP->hdr[1] + 2;
1440 if ((dataLen < 2) || (dataLen < (TI_UINT32)(cellTP->hdr[1] + 2)))
1445 if (cellTP->hdr[1] > DOT11_CELL_TP_ELE_LEN)
1450 os_memoryCopy(pMlme->hOs, (void*)cellTP->oui, pData, cellTP->hdr[1]);
1452 if (os_memoryCompare(pMlme->hOs, (void*)cellTP->oui, XCC_OUI, 3) != 0)
1741 frame->cellTP = &params->cellTP;
1742 status = mlmeParser_readCellTP(pHandle, pData, bodyDataLen, &readLen, frame->cellTP);