Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DSoftApManagerTest.java361 when(mWifiNative.setApCountryCode( in setUp()
754 verify(mWifiNative, never()).setApCountryCode(eq(TEST_INTERFACE_NAME), any()); in startSoftApOn5GhzFailGeneralErrorForNoCountryCode()
789 verify(mWifiNative, never()).setApCountryCode(eq(TEST_INTERFACE_NAME), any()); in startSoftApOn6GhzFailGeneralErrorForNoCountryCode()
817 when(mWifiNative.setApCountryCode( in startSoftApOn5GhzFailGeneralErrorForCountryCodeSetFailure()
823 verify(mWifiNative).setApCountryCode( in startSoftApOn5GhzFailGeneralErrorForCountryCodeSetFailure()
853 when(mWifiNative.setApCountryCode( in startSoftApOn6GhzFailGeneralErrorForCountryCodeSetFailure()
859 verify(mWifiNative).setApCountryCode( in startSoftApOn6GhzFailGeneralErrorForCountryCodeSetFailure()
889 verify(mWifiNative, never()).setApCountryCode(eq(TEST_INTERFACE_NAME), any()); in startSoftApOn24GhzNoFailForNoCountryCode()
907 verify(mWifiNative, never()).setApCountryCode(eq(TEST_INTERFACE_NAME), any()); in startSoftApOnAnyGhzNoFailForNoCountryCode()
923 when(mWifiNative.setApCountryCode(eq(TEST_INTERFACE_NAME), any())).thenReturn(false); in startSoftApOn2GhzNoFailForCountryCodeSetFailure()
[all …]
DWifiNativeTest.java1528 when(mWifiVendorHal.setApCountryCode(any(), any())).thenReturn(true); in testSetApCountryCodeSuccessful()
1531 mWifiNative.setApCountryCode(WIFI_IFACE_NAME, testCountryCode); in testSetApCountryCodeSuccessful()
1532 verify(mWifiVendorHal).setApCountryCode(WIFI_IFACE_NAME, testCountryCode); in testSetApCountryCodeSuccessful()
1540 when(mWifiVendorHal.setApCountryCode(any(), any())).thenReturn(false); in testSetApCountryCodeFailure()
1543 mWifiNative.setApCountryCode(WIFI_IFACE_NAME, testCountryCode); in testSetApCountryCodeFailure()
1544 verify(mWifiVendorHal).setApCountryCode(WIFI_IFACE_NAME, testCountryCode); in testSetApCountryCodeFailure()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DSoftApManager.java817 if (!mWifiNative.setApCountryCode( in setCountryCode()
2158 && mWifiNative.setApCountryCode( in processMessageImpl()
DWifiVendorHal.java1094 public boolean setApCountryCode(@NonNull String ifaceName, String countryCode) { in setApCountryCode() method in WifiVendorHal
DWifiNative.java4259 public boolean setApCountryCode(@NonNull String ifaceName, String countryCode) {
4260 if (mWifiVendorHal.setApCountryCode(ifaceName, countryCode)) {