Searched refs:setChipCountryCode (Results 1 – 5 of 5) sorted by relevance
1329 when(mWifiVendorHal.setChipCountryCode(any())).thenReturn(true); in testSetChipCountryCodeSuccessful()1332 mWifiNative.setChipCountryCode(testCountryCode); in testSetChipCountryCodeSuccessful()1333 verify(mWifiVendorHal).setChipCountryCode(testCountryCode); in testSetChipCountryCodeSuccessful()1341 when(mWifiVendorHal.setChipCountryCode(any())).thenReturn(false); in testSetChipCountryCodeFailure()1344 mWifiNative.setChipCountryCode(testCountryCode); in testSetChipCountryCodeFailure()1345 verify(mWifiVendorHal).setChipCountryCode(testCountryCode); in testSetChipCountryCodeFailure()
4082 assertFalse(mWifiVendorHal.setChipCountryCode(null)); in testSetCountryCodeWithHalV1_5()4083 assertFalse(mWifiVendorHal.setChipCountryCode("")); in testSetCountryCodeWithHalV1_5()4084 assertFalse(mWifiVendorHal.setChipCountryCode("A")); in testSetCountryCodeWithHalV1_5()4088 assertTrue(mWifiVendorHal.setChipCountryCode("US")); in testSetCountryCodeWithHalV1_5()
54 return mWifiNative.setChipCountryCode(countryCode); in setCountryCode()
3417 public boolean setChipCountryCode(String countryCode) {3418 if (mWifiVendorHal.setChipCountryCode(countryCode)) {
1968 public boolean setChipCountryCode(String countryCode) { in setChipCountryCode() method in WifiVendorHal