Home | History | Annotate | Download | only in Test

Lines Matching defs:pCurrentSiteTable

552     siteTablesParams_t      *pCurrentSiteTable = pSiteMgr->pSitesMgmtParams->pCurrentSiteTable;
558 if ( pCurrentSiteTable->maxNumOfSites > MAX_SITES_BG_BAND )
560 WLAN_OS_REPORT(("printSiteTable. pCurrentSiteTable->maxNumOfSites=%d exceeds the limit %d\n",
561 pCurrentSiteTable->maxNumOfSites, MAX_SITES_BG_BAND));
563 pCurrentSiteTable->maxNumOfSites = MAX_SITES_BG_BAND;
569 for (i = 0; i < pCurrentSiteTable->maxNumOfSites; i++)
571 pSiteEntry = &(pCurrentSiteTable->siteTable[i]);
576 if ( pCurrentSiteTable->siteTable[i].ssid.len > MAX_SSID_LEN )
578 WLAN_OS_REPORT(("printSiteTable. pCurrentSiteTable->siteTable[%d].ssid.len=%d exceeds the limit %d\n",
579 i, pCurrentSiteTable->siteTable[i].ssid.len, MAX_SSID_LEN));
581 pCurrentSiteTable->siteTable[i].ssid.len = MAX_SSID_LEN;
583 os_memoryCopy(pSiteMgr->hOs ,ssid, (void *)pCurrentSiteTable->siteTable[i].ssid.str, pCurrentSiteTable->siteTable[i].ssid.len);
584 ssid[pCurrentSiteTable->siteTable[i].ssid.len] = '\0';
611 pCurrentSiteTable->siteTable[i].bssid[0],
612 pCurrentSiteTable->siteTable[i].bssid[1],
613 pCurrentSiteTable->siteTable[i].bssid[2],
614 pCurrentSiteTable->siteTable[i].bssid[3],
615 pCurrentSiteTable->siteTable[i].bssid[4],
616 pCurrentSiteTable->siteTable[i].bssid[5]));
619 if (pCurrentSiteTable->siteTable[i].bssType == BSS_INFRASTRUCTURE)
621 else if (pCurrentSiteTable->siteTable[i].bssType == BSS_INDEPENDENT)
623 else if (pCurrentSiteTable->siteTable[i].bssType == BSS_ANY)
629 WLAN_OS_REPORT(("Channel %d\n", pCurrentSiteTable->siteTable[i].channel));
633 switch (pCurrentSiteTable->siteTable[i].maxBasicRate)
684 WLAN_OS_REPORT(("Max Basic Rate INVALID, 0x%X\n", pCurrentSiteTable->siteTable[i].maxBasicRate));
688 switch (pCurrentSiteTable->siteTable[i].maxActiveRate)
743 WLAN_OS_REPORT(("Max Active Rate INVALID, 0x%X\n", pCurrentSiteTable->siteTable[i].maxActiveRate));
749 if (pCurrentSiteTable->siteTable[i].probeModulation == DRV_MODULATION_QPSK)
751 else if (pCurrentSiteTable->siteTable[i].probeModulation == DRV_MODULATION_CCK)
753 else if (pCurrentSiteTable->siteTable[i].probeModulation == DRV_MODULATION_PBCC)
756 WLAN_OS_REPORT(("Probe Modulation INVALID, %d\n", pCurrentSiteTable->siteTable[i].probeModulation));
758 if (pCurrentSiteTable->siteTable[i].beaconModulation == DRV_MODULATION_QPSK)
760 else if (pCurrentSiteTable->siteTable[i].beaconModulation == DRV_MODULATION_CCK)
762 else if (pCurrentSiteTable->siteTable[i].beaconModulation == DRV_MODULATION_PBCC)
765 WLAN_OS_REPORT(("Beacon Modulation INVALID, %d\n", pCurrentSiteTable->siteTable[i].beaconModulation));
769 if (pCurrentSiteTable->siteTable[i].privacy == TI_TRUE)
774 if (pCurrentSiteTable->siteTable[i].currentPreambleType == PREAMBLE_SHORT)
776 else if (pCurrentSiteTable->siteTable[i].currentPreambleType == PREAMBLE_LONG)
779 WLAN_OS_REPORT(("Preamble INVALID, %d\n", pCurrentSiteTable->siteTable[i].currentPreambleType));
784 WLAN_OS_REPORT(("Beacon interval %d\n", pCurrentSiteTable->siteTable[i].beaconInterval));
786 WLAN_OS_REPORT(("Local Time Stamp %d\n", pCurrentSiteTable->siteTable[i].localTimeStamp));
788 WLAN_OS_REPORT(("rssi %d\n", pCurrentSiteTable->siteTable[i].rssi));
792 WLAN_OS_REPORT(("Fail status %d\n", pCurrentSiteTable->siteTable[i].failStatus));
794 WLAN_OS_REPORT(("ATIM Window %d\n", pCurrentSiteTable->siteTable[i].atimWindow));
806 if (pCurrentSiteTable == &pSiteMgr->pSitesMgmtParams->dot11BG_sitesTables)
810 pCurrentSiteTable = (siteTablesParams_t *)&pSiteMgr->pSitesMgmtParams->dot11A_sitesTables;
816 pCurrentSiteTable = &pSiteMgr->pSitesMgmtParams->dot11BG_sitesTables;