/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/coex/ |
D | CoexManagerTest.java | 213 coexManager.setCoexUnsafeChannels(unsafeChannels, restrictions); in testSetCoexUnsafeChannels_nonNullChannels_returnedInGetters() 231 coexManager.setCoexUnsafeChannels(unsafeChannels, restrictions); in testSetCoexUnsafeChannels_nullChannels_setsEmptySet() 233 coexManager.setCoexUnsafeChannels(null, 0); in testSetCoexUnsafeChannels_nullChannels_setsEmptySet() 251 coexManager.setCoexUnsafeChannels(unsafeChannels, restrictions); in testSetCoexUnsafeChannels_undefinedRestrictions_setsEmptySet() 253 coexManager.setCoexUnsafeChannels(Collections.emptyList(), ~restrictions); in testSetCoexUnsafeChannels_undefinedRestrictions_setsEmptySet() 270 coexManager.setCoexUnsafeChannels(unsafeChannels, restrictions); in testSetCoexUnsafeChannels_notifiesWifiVendorHal() 272 verify(mMockWifiNative).setCoexUnsafeChannels(unsafeChannels, restrictions); in testSetCoexUnsafeChannels_notifiesWifiVendorHal() 292 coexManager.setCoexUnsafeChannels(unsafeChannels, restrictions); in testRegisteredCoexListener_setCoexUnsafeChannels_listenerIsNotified() 317 coexManager.setCoexUnsafeChannels(unsafeChannels, restrictions); in testUnregisteredCoexListener_setCoexUnsafeChannels_listenerIsNotNotified() 345 coexManager.setCoexUnsafeChannels(unsafeChannels, restrictions); in testRegisteredRemoteCoexCallback_setCoexUnsafeChannels_callbackIsNotified() [all …]
|
/packages/modules/Wifi/service/java/com/android/server/wifi/hal/ |
D | IWifiChip.java | 383 boolean setCoexUnsafeChannels(List<CoexUnsafeChannel> unsafeChannels, int restrictions); in setCoexUnsafeChannels() method
|
D | WifiChip.java | 873 public boolean setCoexUnsafeChannels(List<CoexUnsafeChannel> unsafeChannels, int restrictions) { in setCoexUnsafeChannels() method in WifiChip 875 () -> mWifiChip.setCoexUnsafeChannels(unsafeChannels, restrictions)); in setCoexUnsafeChannels()
|
D | WifiChipAidlImpl.java | 969 public boolean setCoexUnsafeChannels(List<CoexUnsafeChannel> unsafeChannels, int restrictions) { in setCoexUnsafeChannels() method in WifiChipAidlImpl 977 mWifiChip.setCoexUnsafeChannels(halChannels, halRestrictions); in setCoexUnsafeChannels()
|
D | WifiChipHidlImpl.java | 500 public boolean setCoexUnsafeChannels(List<CoexUnsafeChannel> unsafeChannels, int restrictions) { in setCoexUnsafeChannels() method in WifiChipHidlImpl 1316 WifiStatus status = chip15.setCoexUnsafeChannels( in setCoexUnsafeChannelsInternal()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/coex/ |
D | CoexManager.java | 340 public void setCoexUnsafeChannels(@NonNull List<CoexUnsafeChannel> coexUnsafeChannels, in setCoexUnsafeChannels() method in CoexManager 364 mWifiNative.setCoexUnsafeChannels(mCurrentCoexUnsafeChannels, mCoexRestrictions); in setCoexUnsafeChannels() 785 setCoexUnsafeChannels( in updateCoexUnsafeChannels()
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | WifiNativeTest.java | 885 mWifiNative.setCoexUnsafeChannels(unsafeChannels, restrictions); in testStartHalUpdatesCoexUnsafeChannels() 889 verify(mWifiVendorHal, times(2)).setCoexUnsafeChannels(unsafeChannels, restrictions); in testStartHalUpdatesCoexUnsafeChannels() 894 verify(mWifiVendorHal, times(3)).setCoexUnsafeChannels(unsafeChannels, restrictions); in testStartHalUpdatesCoexUnsafeChannels() 899 verify(mWifiVendorHal, times(4)).setCoexUnsafeChannels(unsafeChannels, restrictions); in testStartHalUpdatesCoexUnsafeChannels() 1155 mWifiNative.setCoexUnsafeChannels(Collections.emptyList(), 0); in testSetCoexUnsafeChannels() 1156 verify(mWifiVendorHal).setCoexUnsafeChannels(Collections.emptyList(), 0); in testSetCoexUnsafeChannels()
|
D | WifiServiceImplTest.java | 2089 mWifiServiceImpl.setCoexUnsafeChannels(unsafeChannels, coexRestrictions); in testSetCoexUnsafeChannelsDefaultAlgorithmDisabled() 2091 verify(mCoexManager, times(1)).setCoexUnsafeChannels(any(), anyInt()); in testSetCoexUnsafeChannelsDefaultAlgorithmDisabled() 2108 mWifiServiceImpl.setCoexUnsafeChannels(unsafeChannels, coexRestrictions); in testSetCoexUnsafeChannelsDefaultAlgorithmEnabled() 2110 verify(mCoexManager, never()).setCoexUnsafeChannels(any(), anyInt()); in testSetCoexUnsafeChannelsDefaultAlgorithmEnabled() 2120 mWifiServiceImpl.setCoexUnsafeChannels(null, 0); in testSetCoexUnsafeChannelsNullSet() 2152 mWifiServiceImpl.setCoexUnsafeChannels(new ArrayList<>(), 0); in testSetCoexUnsafeChannelsThrowsSecurityExceptionOnMissingPermissions()
|
D | WifiNativeInterfaceManagementTest.java | 1760 mInOrder.verify(mWifiVendorHal).setCoexUnsafeChannels(any(), anyInt()); in validateStartHal()
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hal/ |
D | WifiChipHidlImplTest.java | 635 when(mIWifiChipMockV15.setCoexUnsafeChannels(any(), anyInt())) in testSetCoexUnsafeChannels() 642 assertTrue(mDut.setCoexUnsafeChannels(unsafeChannels, restrictions)); in testSetCoexUnsafeChannels()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | WifiVendorHal.java | 490 public boolean setCoexUnsafeChannels( in setCoexUnsafeChannels() method in WifiVendorHal 493 return mWifiChip.setCoexUnsafeChannels(unsafeChannels, restrictions); in setCoexUnsafeChannels()
|
D | WifiNative.java | 635 mWifiVendorHal.setCoexUnsafeChannels( in startHal() 2470 public void setCoexUnsafeChannels( 2475 mWifiVendorHal.setCoexUnsafeChannels(mCachedCoexUnsafeChannels, mCachedCoexRestrictions);
|
D | WifiServiceImpl.java | 1615 public void setCoexUnsafeChannels( in setCoexUnsafeChannels() method in WifiServiceImpl 1630 mCoexManager.setCoexUnsafeChannels(unsafeChannels, restrictions), in setCoexUnsafeChannels()
|
/packages/modules/Wifi/framework/java/android/net/wifi/ |
D | IWifiManager.aidl | 231 … void setCoexUnsafeChannels(in List<CoexUnsafeChannel> unsafeChannels, int mandatoryRestrictions); in setCoexUnsafeChannels() method
|
D | BaseWifiService.java | 462 public void setCoexUnsafeChannels(List<CoexUnsafeChannel> unsafeChannels, int restrictions) { in setCoexUnsafeChannels() method in BaseWifiService
|
D | WifiManager.java | 5523 public void setCoexUnsafeChannels( in setCoexUnsafeChannels() method in WifiManager 5529 mService.setCoexUnsafeChannels(unsafeChannels, restrictions); in setCoexUnsafeChannels()
|
/packages/modules/Wifi/framework/tests/src/android/net/wifi/ |
D | WifiManagerTest.java | 360 mWifiManager.setCoexUnsafeChannels(unsafeChannels, restrictions); in testSetCoexUnsafeChannelsGoesToWifiServiceImpl() 362 verify(mWifiService).setCoexUnsafeChannels(unsafeChannels, restrictions); in testSetCoexUnsafeChannelsGoesToWifiServiceImpl() 372 mWifiManager.setCoexUnsafeChannels(null, 0); in testSetCoexUnsafeChannelsThrowsIllegalArgumentExceptionOnNullUnsafeChannels()
|
/packages/modules/Wifi/framework/api/ |
D | system-current.txt | 788 …Manifest.permission.WIFI_UPDATE_COEX_UNSAFE_CHANNELS) public void setCoexUnsafeChannels(@NonNull j…
|