Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiNativeTest.java1329 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()
DWifiVendorHalTest.java4082 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()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DScanOnlyModeImpl.java54 return mWifiNative.setChipCountryCode(countryCode); in setCountryCode()
DWifiNative.java3417 public boolean setChipCountryCode(String countryCode) {
3418 if (mWifiVendorHal.setChipCountryCode(countryCode)) {
DWifiVendorHal.java1968 public boolean setChipCountryCode(String countryCode) { in setChipCountryCode() method in WifiVendorHal