Home
last modified time | relevance | path

Searched refs:WifiHotspotRepository (Results 1 – 16 of 16) sorted by relevance

/packages/apps/Settings/src/com/android/settings/wifi/tether/
DWifiHotspotSpeedViewModel.java19 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_2GHZ;
20 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_2GHZ_5GHZ;
21 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_5GHZ;
22 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_6GHZ;
35 import com.android.settings.wifi.repository.WifiHotspotRepository;
54 protected final WifiHotspotRepository mWifiHotspotRepository;
DWifiTetherViewModel.java24 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_2GHZ;
25 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_2GHZ_5GHZ;
26 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_5GHZ;
27 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_6GHZ;
43 import com.android.settings.wifi.repository.WifiHotspotRepository;
80 protected final WifiHotspotRepository mWifiHotspotRepository;
DWifiHotspotSpeedSettings.java19 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_2GHZ;
20 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_2GHZ_5GHZ;
21 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_5GHZ;
22 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_6GHZ;
DWifiHotspotSecurityViewModel.java24 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_6GHZ;
34 import com.android.settings.wifi.repository.WifiHotspotRepository;
56 protected final WifiHotspotRepository mWifiHotspotRepository;
DWifiTetherAutoOffPreferenceController.java29 import com.android.settings.wifi.repository.WifiHotspotRepository;
41 WifiHotspotRepository wifiHotspotRepository = FeatureFactory.getFeatureFactory() in WifiTetherAutoOffPreferenceController()
DWifiTetherPasswordPreferenceController.java32 import com.android.settings.wifi.repository.WifiHotspotRepository;
47 private final WifiHotspotRepository mWifiHotspotRepository;
/packages/apps/Settings/tests/unit/src/com/android/settings/wifi/tether/
DWifiHotspotSecurityViewModelTest.java24 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_2GHZ;
25 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_2GHZ_5GHZ;
26 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_5GHZ;
27 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_6GHZ;
46 import com.android.settings.wifi.repository.WifiHotspotRepository;
63 WifiHotspotRepository mWifiHotspotRepository;
DWifiHotspotSpeedViewModelTest.java19 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_2GHZ;
20 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_2GHZ_5GHZ;
21 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_5GHZ;
22 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_6GHZ;
41 import com.android.settings.wifi.repository.WifiHotspotRepository;
61 WifiHotspotRepository mWifiHotspotRepository;
DWifiTetherViewModelTest.java38 import com.android.settings.wifi.repository.WifiHotspotRepository;
60 WifiHotspotRepository mWifiHotspotRepository;
/packages/apps/Settings/src/com/android/settings/wifi/factory/
DWifiFeatureProvider.java31 import com.android.settings.wifi.repository.WifiHotspotRepository;
48 private WifiHotspotRepository mWifiHotspotRepository;
89 public WifiHotspotRepository getWifiHotspotRepository() { in getWifiHotspotRepository()
91 mWifiHotspotRepository = new WifiHotspotRepository(mAppContext, getWifiManager(), in getWifiHotspotRepository()
/packages/apps/Settings/tests/unit/src/com/android/settings/wifi/repository/
DWifiHotspotRepositoryTest.java29 import static com.android.settings.wifi.repository.WifiHotspotRepository.BAND_2GHZ_5GHZ;
30 import static com.android.settings.wifi.repository.WifiHotspotRepository.BAND_2GHZ_5GHZ_6GHZ;
31 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_2GHZ;
32 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_2GHZ_5GHZ;
33 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_5GHZ;
34 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_6GHZ;
101 private WifiHotspotRepository mRepository;
117 mRepository = new WifiHotspotRepository(mContext, mWifiManager, mTetheringManager); in setUp()
748 mRepository = spy(new WifiHotspotRepository(mContext, mWifiManager, mTetheringManager)); in updateCapabilityChanged_band5gUsableChannelsUnsupported_update5gAvailable()
759 mRepository = spy(new WifiHotspotRepository(mContext, mWifiManager, mTetheringManager)); in updateCapabilityChanged_band6gUsableChannelsUnsupported_update5gAvailable()
/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/tether/
DWifiHotspotSpeedSettingsTest.java19 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_2GHZ;
20 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_2GHZ_5GHZ;
21 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_5GHZ;
22 import static com.android.settings.wifi.repository.WifiHotspotRepository.SPEED_6GHZ;
DWifiTetherAutoOffPreferenceControllerTest.java34 import com.android.settings.wifi.repository.WifiHotspotRepository;
63 when(provider.getWifiHotspotRepository()).thenReturn(mock(WifiHotspotRepository.class)); in setup()
DWifiTetherPasswordPreferenceControllerTest.java40 import com.android.settings.wifi.repository.WifiHotspotRepository;
71 private WifiHotspotRepository mWifiHotspotRepository;
DWifiTetherSettingsTest.java25 import static com.android.settings.wifi.repository.WifiHotspotRepository.BAND_2GHZ_5GHZ_6GHZ;
67 import com.android.settings.wifi.repository.WifiHotspotRepository;
115 private WifiHotspotRepository mWifiHotspotRepository;
/packages/apps/Settings/src/com/android/settings/wifi/repository/
DWifiHotspotRepository.java57 public class WifiHotspotRepository { class
125 public WifiHotspotRepository(@NonNull Context appContext, @NonNull WifiManager wifiManager, in WifiHotspotRepository() method in WifiHotspotRepository