Searched defs:mWifiConfigStoreLegacy (Results 1 - 3 of 3) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiInjector.java105 private final WifiConfigStoreLegacy mWifiConfigStoreLegacy; field in class:WifiInjector
197 mWifiConfigStoreLegacy = new WifiConfigStoreLegacy(
203 mWifiKeyStore, mWifiConfigStore, mWifiConfigStoreLegacy, mWifiPermissionsUtil,
H A DWifiConfigManager.java250 private final WifiConfigStoreLegacy mWifiConfigStoreLegacy; field in class:WifiConfigManager
352 mWifiConfigStoreLegacy = wifiConfigStoreLegacy;
2620 if (!mWifiConfigStoreLegacy.areStoresPresent()) {
2624 WifiConfigStoreDataLegacy storeData = mWifiConfigStoreLegacy.read();
2639 mWifiConfigStoreLegacy.removeStores();
2658 if (!mWifiConfigStoreLegacy.areStoresPresent()) {
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiConfigManagerTest.java105 @Mock private WifiConfigStoreLegacy mWifiConfigStoreLegacy; field in class:WifiConfigManagerTest
2489 when(mWifiConfigStoreLegacy.areStoresPresent()).thenReturn(true);
2490 when(mWifiConfigStoreLegacy.read()).thenReturn(storeData);
2496 verify(mWifiConfigStoreLegacy).read();
2497 verify(mWifiConfigStoreLegacy).removeStores();
2513 when(mWifiConfigStoreLegacy.areStoresPresent()).thenReturn(false);
2518 verify(mWifiConfigStoreLegacy, never()).read();
2519 verify(mWifiConfigStoreLegacy, never()).removeStores();
2530 when(mWifiConfigStoreLegacy.areStoresPresent()).thenReturn(false);
2535 verify(mWifiConfigStoreLegacy, neve
[all...]

Completed in 309 milliseconds