Home | History | Annotate | Download | only in Sta_Management

Lines Matching refs:tParam

183     paramInfo_t     tParam;
188 tParam.paramType = SITE_MGR_DESIRED_DOT11_MODE_PARAM;
189 siteMgr_getParam (pScanCncn->hSiteManager, &tParam);
190 if ((DOT11_G_MODE != tParam.content.siteMgrDot11Mode) && (DOT11_DUAL_MODE != tParam.content.siteMgrDot11Mode))
202 tParam.paramType = REGULATORY_DOMAIN_ENABLED_PARAM;
203 regulatoryDomain_getParam (pScanCncn->hRegulatoryDomain, &tParam );
204 bRegulatoryDomainEnabled = tParam.content.regulatoryDomainEnabled;
207 tParam.paramType = REGULATORY_DOMAIN_IS_COUNTRY_FOUND;
208 tParam.content.eRadioBand = RADIO_BAND_2_4_GHZ;
209 regulatoryDomain_getParam (pScanCncn->hRegulatoryDomain, &tParam);
212 if ((TI_TRUE == bRegulatoryDomainEnabled) && (TI_FALSE == tParam.content.bIsCountryFound) )
282 paramInfo_t tParam;
287 tParam.paramType = SITE_MGR_DESIRED_DOT11_MODE_PARAM;
288 siteMgr_getParam (pScanCncn->hSiteManager, &tParam);
289 if ((DOT11_A_MODE != tParam.content.siteMgrDot11Mode) && (DOT11_DUAL_MODE != tParam.content.siteMgrDot11Mode))
301 tParam.paramType = REGULATORY_DOMAIN_ENABLED_PARAM;
302 regulatoryDomain_getParam (pScanCncn->hRegulatoryDomain, &tParam );
303 bRegulatoryDomainEnabled = tParam.content.regulatoryDomainEnabled;
306 tParam.paramType = REGULATORY_DOMAIN_IS_COUNTRY_FOUND;
307 tParam.content.eRadioBand = RADIO_BAND_5_0_GHZ;
308 regulatoryDomain_getParam (pScanCncn->hRegulatoryDomain, &tParam);
311 if ( (TI_TRUE == bRegulatoryDomainEnabled) && (TI_FALSE == tParam.content.bIsCountryFound) )
421 paramInfo_t tParam;
425 tParam.paramType = REGULATORY_DOMAIN_ALL_SUPPORTED_CHANNELS;
426 tParam.content.siteMgrRadioBand = eBand;
427 regulatoryDomain_getParam (pScanCncn->hRegulatoryDomain, &tParam);
428 uAllowedChannelsCount = tParam.content.supportedChannels.sizeOfList;
438 tParam.content.supportedChannels.listOfChannels, uAllowedChannelsCount );
441 tParam.paramType = REGULATORY_DOMAIN_GET_SCAN_CAPABILITIES;
442 tParam.content.channelCapabilityReq.band = eBand;
452 tParam.content.channelCapabilityReq.scanOption = PASSIVE_SCANNING;
456 tParam.content.channelCapabilityReq.scanOption = ACTIVE_SCANNING;
458 tParam.content.channelCapabilityReq.channelNum = uTempChannelList[ i ];
460 regulatoryDomain_getParam( pScanCncn->hRegulatoryDomain, &tParam );
461 if (TI_TRUE == tParam.content.channelCapabilityRet.channelValidity)
472 tParam.content.channelCapabilityRet.maxTxPowerDbm;