Searched refs:setCountryCodeHal (Results 1 – 5 of 5) sorted by relevance
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
D | SoftApManagerTest.java | 143 when(mWifiNative.setCountryCodeHal( in setUp() 376 verify(mWifiNative, never()).setCountryCodeHal(eq(TEST_INTERFACE_NAME), any()); in startSoftApOn5GhzFailGeneralErrorForNoCountryCode() 404 when(mWifiNative.setCountryCodeHal( in startSoftApOn5GhzFailGeneralErrorForCountryCodeSetFailure() 423 verify(mWifiNative).setCountryCodeHal( in startSoftApOn5GhzFailGeneralErrorForCountryCodeSetFailure() 452 verify(mWifiNative, never()).setCountryCodeHal(eq(TEST_INTERFACE_NAME), any()); in startSoftApOn24GhzNoFailForNoCountryCode() 468 verify(mWifiNative, never()).setCountryCodeHal(eq(TEST_INTERFACE_NAME), any()); in startSoftApOnAnyGhzNoFailForNoCountryCode() 483 when(mWifiNative.setCountryCodeHal(eq(TEST_INTERFACE_NAME), any())).thenReturn(false); in startSoftApOn2GhzNoFailForCountryCodeSetFailure() 486 verify(mWifiNative).setCountryCodeHal( in startSoftApOn2GhzNoFailForCountryCodeSetFailure() 502 when(mWifiNative.setCountryCodeHal(eq(TEST_INTERFACE_NAME), any())).thenReturn(false); in startSoftApOnAnyNoFailForCountryCodeSetFailure() 505 verify(mWifiNative).setCountryCodeHal( in startSoftApOnAnyNoFailForCountryCodeSetFailure()
|
D | WifiVendorHalTest.java | 1342 assertFalse(mWifiVendorHal.setCountryCodeHal(TEST_IFACE_NAME, null)); in testSetCountryCodeHal() 1343 assertFalse(mWifiVendorHal.setCountryCodeHal(TEST_IFACE_NAME, "")); in testSetCountryCodeHal() 1344 assertFalse(mWifiVendorHal.setCountryCodeHal(TEST_IFACE_NAME, "A")); in testSetCountryCodeHal() 1346 assertTrue(mWifiVendorHal.setCountryCodeHal(TEST_IFACE_NAME, "CA")); in testSetCountryCodeHal() 1347 assertFalse(mWifiVendorHal.setCountryCodeHal(TEST_IFACE_NAME, "ZZZ")); in testSetCountryCodeHal() 1362 assertFalse(mWifiVendorHal.setCountryCodeHal(TEST_IFACE_NAME, "CA")); in testRemoteExceptionIsHandled()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | SoftApManager.java | 268 } else if (!mWifiNative.setCountryCodeHal( in startSoftAp()
|
D | WifiNative.java | 2700 public boolean setCountryCodeHal(@NonNull String ifaceName, String countryCode) { in setCountryCodeHal() method in WifiNative 2701 return mWifiVendorHal.setCountryCodeHal(ifaceName, countryCode); in setCountryCodeHal()
|
D | WifiVendorHal.java | 1435 public boolean setCountryCodeHal(@NonNull String ifaceName, String countryCode) { in setCountryCodeHal() method in WifiVendorHal
|