Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DSoftApManager.java154 if (!mWifiNative.setCountryCodeHal(mCountryCode.toUpperCase(Locale.ROOT)) in startSoftAp()
DWifiNative.java1187 public boolean setCountryCodeHal(String countryCode) { in setCountryCodeHal() method in WifiNative
1188 return mWifiVendorHal.setCountryCodeHal(countryCode); in setCountryCodeHal()
DWifiVendorHal.java1585 public boolean setCountryCodeHal(String countryCode) { in setCountryCodeHal() method in WifiVendorHal
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DSoftApManagerTest.java221 when(mWifiNative.setCountryCodeHal(TEST_COUNTRY_CODE.toUpperCase(Locale.ROOT))) in startSoftApAndVerifyEnabled()
DWifiVendorHalTest.java1093 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()