Home
last modified time | relevance | path

Searched refs:isDualBand (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Settings/tests/unit/src/com/android/settings/wifi/tether/
DWifiHotspotSpeedViewModelTest.java181 when(mWifiHotspotRepository.isDualBand()).thenReturn(false); in on5gAvailableChanged_inSingleBand_setLiveDataToShowSingleBand()
194 when(mWifiHotspotRepository.isDualBand()).thenReturn(true); in on5gAvailableChanged_inDualBandAnd5gUnavailable_setLiveDataToShowSingleBand()
207 when(mWifiHotspotRepository.isDualBand()).thenReturn(true); in on5gAvailableChanged_inDualBandAnd5gAvailable_setLiveDataToShowDualBand()
/packages/apps/Settings/src/com/android/settings/wifi/tether/
DWifiTetherAutoOffPreferenceController.java43 if (wifiHotspotRepository.isSpeedFeatureAvailable() && wifiHotspotRepository.isDualBand()) { in WifiTetherAutoOffPreferenceController()
DWifiHotspotSpeedViewModel.java100 boolean showDualBand = mWifiHotspotRepository.isDualBand() && available; in on5gAvailableChanged()
/packages/apps/Settings/src/com/android/settings/wifi/repository/
DWifiHotspotRepository.java306 } else if (isDualBand() && is5gAvailable()) { in updateSpeedType()
373 public boolean isDualBand() { in isDualBand() method in WifiHotspotRepository
/packages/apps/Settings/tests/unit/src/com/android/settings/wifi/repository/
DWifiHotspotRepositoryTest.java540 assertThat(mRepository.isDualBand()).isTrue(); in isDualBand_resultSameAsWifiManager()
546 assertThat(mRepository.isDualBand()).isFalse(); in isDualBand_resultSameAsWifiManager()