Home
last modified time | relevance | path

Searched refs:mIsDualBand (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Settings/tests/unit/src/com/android/settings/wifi/repository/
DWifiHotspotRepositoryTest.java120 mRepository.mIsDualBand = true; in setUp()
361 mRepository.mIsDualBand = false; in updateSpeedType_singleBand2g_get2gSpeedType()
372 mRepository.mIsDualBand = false; in updateSpeedType_singleBand5gPreferred_get5gSpeedType()
384 mRepository.mIsDualBand = false; in updateSpeedType_singleBand5gPreferredBut5gUnavailable_get2gSpeedType()
397 mRepository.mIsDualBand = false; in updateSpeedType_singleBand6gPreferred_get6gSpeedType()
409 mRepository.mIsDualBand = false; in updateSpeedType_singleBand6gPreferredBut6gUnavailable_get5gSpeedType()
422 mRepository.mIsDualBand = false; in updateSpeedType_singleBand6gPreferredBut5gAnd6gUnavailable_get2gSpeedType()
436 mRepository.mIsDualBand = true; in updateSpeedType_dualBand2gAnd5g_get2gAnd5gSpeedType()
448 mRepository.mIsDualBand = true; in updateSpeedType_dualBand2gAnd5gBut5gUnavailable_get2gSpeedType()
492 mRepository.mIsDualBand = true; in setSpeedType_6ghzTo2g5ghz_setConfigBandsTo2g5ghz()
[all …]
/packages/apps/Settings/src/com/android/settings/wifi/repository/
DWifiHotspotRepository.java100 protected Boolean mIsDualBand; field in WifiHotspotRepository
351 } else if (mIsDualBand) { in setSpeedType()
374 if (mIsDualBand == null) { in isDualBand()
375 mIsDualBand = mWifiManager.isBridgedApConcurrencySupported(); in isDualBand()
376 log("isDualBand():" + mIsDualBand); in isDualBand()
378 return mIsDualBand; in isDualBand()