Home | History | Annotate | Download | only in Sta_Management

Lines Matching defs:newAP

3927     bssEntry_t  newAP;
3929 MAC_COPY (newAP.BSSID, pCandidate->bssid);
3930 newAP.band = pCandidate->eBand;
3931 newAP.RSSI = pCandidate->rssi;
3932 newAP.rxRate = pCandidate->rxRate;
3933 newAP.channel = pCandidate->channel;
3934 os_memoryCopy(pSiteMgr->hOs, (void *)&newAP.lastRxTSF, (void *)pCandidate->tsfTimeStamp , TIME_STAMP_LEN);
3935 newAP.beaconInterval = pCandidate->beaconInterval;
3936 newAP.capabilities = pCandidate->capabilities;
3937 newAP.pBuffer = NULL;
3941 newAP.resultType = SCAN_RFT_PROBE_RESPONSE;
3942 newAP.pBuffer = (TI_UINT8 *)(pCandidate->probeRespBuffer);
3944 newAP.bufferLength = pCandidate->probeRespLength;
3950 newAP.resultType = SCAN_RFT_BEACON;
3951 newAP.pBuffer = (TI_UINT8 *)(pCandidate->beaconBuffer);
3953 newAP.bufferLength = pCandidate->beaconLength;
3963 if (newAP.pBuffer == NULL)
3969 return siteMgr_overwritePrimarySite (hSiteMgr, &newAP, TI_FALSE);
4023 TI_STATUS siteMgr_overwritePrimarySite(TI_HANDLE hSiteMgr, bssEntry_t *newAP, TI_BOOL requiredToStorePrevSite)
4029 TRACE6(pSiteMgr->hReport, REPORT_SEVERITY_INFORMATION, "siteMgr_overwritePrimarySite: new site bssid= 0x%x-0x%x-0x%x-0x%x-0x%x-0x%x\n\n", newAP->BSSID[0], newAP->BSSID[1], newAP->BSSID[2], newAP->BSSID[3], newAP->BSSID[4], newAP->BSSID[5]);
4060 newApEntry = findAndInsertSiteEntry(pSiteMgr, &(newAP->BSSID), newAP->band);
4068 newApEntry->rssi = newAP->RSSI;
4071 newApEntry->rxRate = (ERate)newAP->rxRate;
4077 if (newAP->resultType == SCAN_RFT_PROBE_RESPONSE)
4080 siteMgr_saveProbeRespBuffer(hSiteMgr, &(newAP->BSSID), newAP->pBuffer, newAP->bufferLength);
4085 siteMgr_saveBeaconBuffer(hSiteMgr, &(newAP->BSSID), newAP->pBuffer, newAP->bufferLength);
4087 ieListParseParams->band = newAP->band;
4088 ieListParseParams->rxChannel = newAP->channel;
4094 os_memoryCopy(pSiteMgr->hOs, (void *)ieListParseParams->frame.content.iePacket.timestamp, (void *)&newAP->lastRxTSF, TIME_STAMP_LEN);
4095 ieListParseParams->frame.content.iePacket.beaconInerval = newAP->beaconInterval;
4096 ieListParseParams->frame.content.iePacket.capabilities = newAP->capabilities;
4098 if (mlmeParser_parseIEs(pSiteMgr->hMlmeSm, newAP->pBuffer, newAP->bufferLength, ieListParseParams) != TI_OK)
4104 siteMgr_updateSite(hSiteMgr, &(newAP->BSSID), &ieListParseParams->frame, newAP->channel, newAP->band, TI_FALSE);