Searched refs:WIFI_DEFAULT_COUNTRY_CODE (Results 1 – 3 of 3) sorted by relevance
22 import static com.android.server.wifi.WifiSettingsConfigStore.WIFI_DEFAULT_COUNTRY_CODE;159 when(mSettingsConfigStore.get(WIFI_DEFAULT_COUNTRY_CODE)) in setUp()162 }).when(mSettingsConfigStore).put(eq(WIFI_DEFAULT_COUNTRY_CODE), any(String.class)); in setUp()164 when(mSettingsConfigStore.get(WIFI_DEFAULT_COUNTRY_CODE)).thenReturn(mDefaultCountryCode); in setUp()549 verify(mSettingsConfigStore).put(eq(WIFI_DEFAULT_COUNTRY_CODE), eq(TEST_COUNTRY_CODE)); in setDefaultCountryCode()550 assertEquals(TEST_COUNTRY_CODE, mSettingsConfigStore.get(WIFI_DEFAULT_COUNTRY_CODE)); in setDefaultCountryCode()807 when(mSettingsConfigStore.get(WIFI_DEFAULT_COUNTRY_CODE)).thenReturn(mDefaultCountryCode); in testUpdateountryCodeGenericTwoGoodScanResultUs()
19 import static com.android.server.wifi.WifiSettingsConfigStore.WIFI_DEFAULT_COUNTRY_CODE;603 mSettingsConfigStore.put(WIFI_DEFAULT_COUNTRY_CODE, in setDefaultCountryCode()618 + mSettingsConfigStore.get(WIFI_DEFAULT_COUNTRY_CODE)); in dump()684 return mSettingsConfigStore.get(WIFI_DEFAULT_COUNTRY_CODE); in pickCountryCode()
127 public static final Key<String> WIFI_DEFAULT_COUNTRY_CODE = field in WifiSettingsConfigStore