Home | History | Annotate | Download | only in Sta_Management

Lines Matching refs:pSiteMgr

95 	siteMgr_t		*pSiteMgr = (siteMgr_t *)hSiteMgr;
100 TRACE2( pSiteMgr->hReport, REPORT_SEVERITY_ERROR,
106 os_memoryZero(pSiteMgr->hOs, &pSiteTableParams->siteTable[0], sizeof(siteEntry_t)*pSiteTableParams->maxNumOfSites);
118 pSiteMgr->pSitesMgmtParams->pPrimarySite = NULL;
132 INPUT: pSiteMgr - Handle to site mgr
141 siteEntry_t *findSiteEntry(siteMgr_t *pSiteMgr,
144 siteTablesParams_t *pCurrentSiteTable = pSiteMgr->pSitesMgmtParams->pCurrentSiteTable;
151 TRACE2( pSiteMgr->hReport, REPORT_SEVERITY_ERROR,
167 TRACE6(pSiteMgr->hReport, REPORT_SEVERITY_INFORMATION,
173 if ((pSiteMgr->pDesiredParams->siteMgrDesiredDot11Mode == DOT11_DUAL_MODE) &&
176 if (pCurrentSiteTable == &pSiteMgr->pSitesMgmtParams->dot11BG_sitesTables)
178 pCurrentSiteTable = (siteTablesParams_t *)&pSiteMgr->pSitesMgmtParams->dot11A_sitesTables;
182 pCurrentSiteTable = &pSiteMgr->pSitesMgmtParams->dot11BG_sitesTables;
190 TRACE6(pSiteMgr->hReport, REPORT_SEVERITY_INFORMATION, "FIND failure, bssid: %X-%X-%X-%X-%X-%X\n\n", (*mac)[0], (*mac)[1], (*mac)[2], (*mac)[3], (*mac)[4], (*mac)[5]);
207 INPUT: pSiteMgr - Handle to site mgr
217 siteEntry_t *findAndInsertSiteEntry(siteMgr_t *pSiteMgr,
222 siteEntry_t *pSiteEntry, *pPrimarySite=pSiteMgr->pSitesMgmtParams->pPrimarySite;
223 sitesMgmtParams_t *pSitesMgmtParams = pSiteMgr->pSitesMgmtParams;
240 TRACE1(pSiteMgr->hReport, REPORT_SEVERITY_ERROR, "Bad band: %d\n\n", band);
256 TRACE2( pSiteMgr->hReport, REPORT_SEVERITY_ERROR,
270 TRACE6(pSiteMgr->hReport, REPORT_SEVERITY_INFORMATION, "FIND success, bssid: %X-%X-%X-%X-%X-%X\n\n", (*mac)[0], (*mac)[1], (*mac)[2], (*mac)[3], (*mac)[4], (*mac)[5]);
290 TRACE4(pSiteMgr->hReport, REPORT_SEVERITY_INFORMATION, "INSERT failure, no free entry!, oldestTS=%d, nextSite2Remove=%d, "
300 TRACE9(pSiteMgr->hReport, REPORT_SEVERITY_INFORMATION, "INSERT failure, no free entry!, numOfSites=%d, removing site index=%d,\n bssid: %X-%X-%X-%X-%X-%X, ts=%d \n", pCurrentSiteTable->numOfSites, nextSite2Remove, pSiteEntry->bssid[0], pSiteEntry->bssid[1], pSiteEntry->bssid[2], pSiteEntry->bssid[3], pSiteEntry->bssid[4], pSiteEntry->bssid[5], pSiteEntry->localTimeStamp);
301 removeSiteEntry(pSiteMgr, pCurrentSiteTable, pSiteEntry);
316 if(pSiteMgr->siteMgrOperationalMode == DOT11_G_MODE)
317 pSiteEntry->currentSlotTime = pSiteMgr->pDesiredParams->siteMgrDesiredSlotTime;
319 TRACE8(pSiteMgr->hReport, REPORT_SEVERITY_INFORMATION, "INSERT success, bssid: %X-%X-%X-%X-%X-%X, band=%d, index=%d\n\n", (*mac)[0], (*mac)[1], (*mac)[2], (*mac)[3], (*mac)[4], (*mac)[5], band, emptySiteIndex);
330 INPUT: pSiteMgr - Handle to site mgr
340 void removeSiteEntry(siteMgr_t *pSiteMgr,
348 TRACE0(pSiteMgr->hReport, REPORT_SEVERITY_ERROR, "REMOVAL failure, site is NULL\n\n");
354 TRACE0(pSiteMgr->hReport, REPORT_SEVERITY_ERROR, "REMOVAL failure, site table is empty\n\n");
358 TRACE6(pSiteMgr->hReport, REPORT_SEVERITY_INFORMATION, "removeSiteEntry REMOVE ssid=, bssid= 0x%x-0x%x-0x%x-0x%x-0x%x-0x%x\n\n", pSiteEntry->bssid[0], pSiteEntry->bssid[1], pSiteEntry->bssid[2], pSiteEntry->bssid[3], pSiteEntry->bssid[4], pSiteEntry->bssid[5] );
364 TRACE6(pSiteMgr->hReport, REPORT_SEVERITY_INFORMATION, "REMOVAL success, bssid: %X-%X-%X-%X-%X-%X\n\n", pSiteEntry->bssid[0], pSiteEntry->bssid[1], pSiteEntry->bssid[2], pSiteEntry->bssid[3], pSiteEntry->bssid[4], pSiteEntry->bssid[5]);
365 TRACE1(pSiteMgr->hReport, REPORT_SEVERITY_INFORMATION, " SITE TABLE remaining entries number %d \n", pCurrSiteTblParams->numOfSites);
369 os_memoryZero(pSiteMgr->hOs, pSiteEntry, sizeof(siteEntry_t));
377 if (pSiteEntry == pSiteMgr->pSitesMgmtParams->pPrevPrimarySite)
379 pSiteMgr->pSitesMgmtParams->pPrevPrimarySite = NULL;