Home
last modified time | relevance | path

Searched refs:setChipCountryCode (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Wifi/service/java/com/android/server/wifi/
DScanOnlyModeImpl.java54 return mWifiNative.setChipCountryCode(countryCode); in setCountryCode()
DWifiVendorHal.java1065 public boolean setChipCountryCode(String countryCode) { in setChipCountryCode() method in WifiVendorHal
DWifiNative.java4274 public boolean setChipCountryCode(String countryCode) {
4275 if (mWifiVendorHal.setChipCountryCode(countryCode)) {
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiNativeTest.java1553 when(mWifiVendorHal.setChipCountryCode(any())).thenReturn(true); in testSetChipCountryCodeSuccessful()
1556 mWifiNative.setChipCountryCode(testCountryCode); in testSetChipCountryCodeSuccessful()
1557 verify(mWifiVendorHal).setChipCountryCode(testCountryCode); in testSetChipCountryCodeSuccessful()
1565 when(mWifiVendorHal.setChipCountryCode(any())).thenReturn(false); in testSetChipCountryCodeFailure()
1568 mWifiNative.setChipCountryCode(testCountryCode); in testSetChipCountryCodeFailure()
1569 verify(mWifiVendorHal).setChipCountryCode(testCountryCode); in testSetChipCountryCodeFailure()