Home | History | Annotate | Download | only in siteMgr

Lines Matching defs:metric

133 /* RSSI values boundaries and metric values for best, good, etc  signals */
252 UINT32 metric;
319 metric = 0;
354 if (ratesMatchingLevel(pSiteMgr, pSiteEntry, &metric) != MATCH)
360 pSiteEntry->matchingLevel |= metric << METRIC_RATES_SHIFT;
386 if (rsn_evalSite(pSiteMgr->hRsn, &rsnData, pSiteEntry->bssType, pSiteEntry->bssid, &metric) != OK)
393 pSiteEntry->matchingLevel |= metric << METRIC_PRIVACY_SHIFT;
399 if (ctrlData_evalSite(pSiteMgr->hCtrlData, &pSiteEntry->fourXParams, &metric) != OK)
405 pSiteEntry->matchingLevel |= metric << METRIC_4X_SHIFT;
408 if (modulationTypeMatchingLevel(pSiteMgr, pSiteEntry, &metric) != MATCH)
414 pSiteEntry->matchingLevel |= metric << METRIC_MODULATION_SHIFT;
416 if (preambleTypeMatchingLevel(pSiteMgr, pSiteEntry, &metric) != MATCH)
422 pSiteEntry->matchingLevel |= metric << METRIC_PREAMBLE_SHIFT;
424 if (channelMatchingLevel(pSiteMgr, pSiteEntry, &metric) != MATCH)
430 pSiteEntry->matchingLevel |= metric << METRIC_CHANNEL_SHIFT;
432 if (spectrumManagementMatchingLevel(pSiteMgr,pSiteEntry->capabilities,&metric) != MATCH)
438 pSiteEntry->matchingLevel |= metric << METRIC_SPECTRUM_MANAGEMENT_SHIFT;
440 if (rxLevelMatchingLevel(pSiteMgr, pSiteEntry, &metric) != MATCH)
446 pSiteEntry->matchingLevel |= metric << METRIC_RX_LEVEL_SHIFT;
448 if (attemptsNumberMatchingLevel(pSiteMgr, pSiteEntry, &metric) != MATCH)
454 pSiteEntry->matchingLevel |= metric << METRIC_ATTEMPTS_NUMBER_SHIFT;
456 if (prioritySiteMatchingLevel(pSiteMgr, pSiteEntry, &metric) != MATCH)
462 pSiteEntry->matchingLevel |= metric << METRIC_PRIORITY_SITE_SHIFT;