Searched refs:setCountryCodeHal (Results 1 – 5 of 5) sorted by relevance
154 if (!mWifiNative.setCountryCodeHal(mCountryCode.toUpperCase(Locale.ROOT)) in startSoftAp()
1187 public boolean setCountryCodeHal(String countryCode) { in setCountryCodeHal() method in WifiNative1188 return mWifiVendorHal.setCountryCodeHal(countryCode); in setCountryCodeHal()
1585 public boolean setCountryCodeHal(String countryCode) { in setCountryCodeHal() method in WifiVendorHal
221 when(mWifiNative.setCountryCodeHal(TEST_COUNTRY_CODE.toUpperCase(Locale.ROOT))) in startSoftApAndVerifyEnabled()
1093 assertFalse(mWifiVendorHal.setCountryCodeHal(null)); in testSetCountryCodeHal()1094 assertFalse(mWifiVendorHal.setCountryCodeHal("")); in testSetCountryCodeHal()1095 assertFalse(mWifiVendorHal.setCountryCodeHal("A")); in testSetCountryCodeHal()1096 assertTrue(mWifiVendorHal.setCountryCodeHal("CA")); // Only one expected to succeed in testSetCountryCodeHal()1097 assertFalse(mWifiVendorHal.setCountryCodeHal("ZZZ")); in testSetCountryCodeHal()1112 assertFalse(mWifiVendorHal.setCountryCodeHal("CA")); in testRemoteExceptionIsHandled()