Home
last modified time | relevance | path

Searched refs:setCoexUnsafeChannels (Results 1 – 18 of 18) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/coex/
DCoexManagerTest.java213 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/
DIWifiChip.java383 boolean setCoexUnsafeChannels(List<CoexUnsafeChannel> unsafeChannels, int restrictions); in setCoexUnsafeChannels() method
DWifiChip.java873 public boolean setCoexUnsafeChannels(List<CoexUnsafeChannel> unsafeChannels, int restrictions) { in setCoexUnsafeChannels() method in WifiChip
875 () -> mWifiChip.setCoexUnsafeChannels(unsafeChannels, restrictions)); in setCoexUnsafeChannels()
DWifiChipAidlImpl.java969 public boolean setCoexUnsafeChannels(List<CoexUnsafeChannel> unsafeChannels, int restrictions) { in setCoexUnsafeChannels() method in WifiChipAidlImpl
977 mWifiChip.setCoexUnsafeChannels(halChannels, halRestrictions); in setCoexUnsafeChannels()
DWifiChipHidlImpl.java500 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/
DCoexManager.java340 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/
DWifiNativeTest.java885 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()
DWifiServiceImplTest.java2089 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()
DWifiNativeInterfaceManagementTest.java1760 mInOrder.verify(mWifiVendorHal).setCoexUnsafeChannels(any(), anyInt()); in validateStartHal()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hal/
DWifiChipHidlImplTest.java635 when(mIWifiChipMockV15.setCoexUnsafeChannels(any(), anyInt())) in testSetCoexUnsafeChannels()
642 assertTrue(mDut.setCoexUnsafeChannels(unsafeChannels, restrictions)); in testSetCoexUnsafeChannels()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiVendorHal.java490 public boolean setCoexUnsafeChannels( in setCoexUnsafeChannels() method in WifiVendorHal
493 return mWifiChip.setCoexUnsafeChannels(unsafeChannels, restrictions); in setCoexUnsafeChannels()
DWifiNative.java635 mWifiVendorHal.setCoexUnsafeChannels( in startHal()
2470 public void setCoexUnsafeChannels(
2475 mWifiVendorHal.setCoexUnsafeChannels(mCachedCoexUnsafeChannels, mCachedCoexRestrictions);
DWifiServiceImpl.java1615 public void setCoexUnsafeChannels( in setCoexUnsafeChannels() method in WifiServiceImpl
1630 mCoexManager.setCoexUnsafeChannels(unsafeChannels, restrictions), in setCoexUnsafeChannels()
/packages/modules/Wifi/framework/java/android/net/wifi/
DIWifiManager.aidl231 … void setCoexUnsafeChannels(in List<CoexUnsafeChannel> unsafeChannels, int mandatoryRestrictions); in setCoexUnsafeChannels() method
DBaseWifiService.java462 public void setCoexUnsafeChannels(List<CoexUnsafeChannel> unsafeChannels, int restrictions) { in setCoexUnsafeChannels() method in BaseWifiService
DWifiManager.java5523 public void setCoexUnsafeChannels( in setCoexUnsafeChannels() method in WifiManager
5529 mService.setCoexUnsafeChannels(unsafeChannels, restrictions); in setCoexUnsafeChannels()
/packages/modules/Wifi/framework/tests/src/android/net/wifi/
DWifiManagerTest.java360 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/
Dsystem-current.txt788 …Manifest.permission.WIFI_UPDATE_COEX_UNSAFE_CHANNELS) public void setCoexUnsafeChannels(@NonNull j…