Searched refs:setChipCountryCode (Results 1 – 4 of 4) sorted by relevance
54 return mWifiNative.setChipCountryCode(countryCode); in setCountryCode()
1065 public boolean setChipCountryCode(String countryCode) { in setChipCountryCode() method in WifiVendorHal
4274 public boolean setChipCountryCode(String countryCode) {4275 if (mWifiVendorHal.setChipCountryCode(countryCode)) {
1553 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()