Home
last modified time | relevance | path

Searched refs:getCoexUnsafeChannels (Results 1 – 8 of 8) sorted by relevance

/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/coex/
H A DCoexManagerTest.java441 assertThat(coexManager.getCoexUnsafeChannels()).containsExactly( in testGetCoexUnsafeChannels_neighboringLte40_returns2gNeighboringChannels()
473 assertThat(coexManager.getCoexUnsafeChannels()).containsExactly( in testGetCoexUnsafeChannels_neighboringLte46_returns5gNeighboringChannels()
511 assertThat(coexManager.getCoexUnsafeChannels()) in testGetCoexUnsafeChannels_channel27065Example_returnsCorrectWifiChannels()
543 assertThat(coexManager.getCoexUnsafeChannels()) in testGetCoexUnsafeChannels_channel3350Example_returnsCorrectWifiChannels()
570 assertThat(coexManager.getCoexUnsafeChannels()).hasSize(13); in testGetCoexUnsafeChannels_entire2gBandUnsafe_excludesDefault2gChannel()
571 assertThat(coexManager.getCoexUnsafeChannels()).doesNotContain( in testGetCoexUnsafeChannels_entire2gBandUnsafe_excludesDefault2gChannel()
599 assertThat(coexManager.getCoexUnsafeChannels()).doesNotContain( in testGetCoexUnsafeChannels_entire5gBandUnsafe_excludesDefault5gChannel()
642 assertThat(coexManager.getCoexUnsafeChannels()).isEmpty(); in testGetCoexUnsafeChannels_mockCellChannelsAdded_mockCellChannelsUsed()
717 assertThat(coexManager.getCoexUnsafeChannels()).isEmpty(); in testGetCoexUnsafeChannels_LAA_restrict5gSoftApAndWifiDirect()
728 assertThat(coexManager.getCoexUnsafeChannels().stream() in testGetCoexUnsafeChannels_LAA_restrict5gSoftApAndWifiDirect()
[all …]
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/util/
H A DApConfigUtilTest.java392 when(mCoexManager.getCoexUnsafeChannels()).thenReturn(Arrays.asList( in chooseApChannelWithUnsafeChannelsPreferSafe()
429 when(mCoexManager.getCoexUnsafeChannels()).thenReturn(Arrays.asList( in chooseApChannelWithAllSoftUnsafePreferHighBand()
459 when(mCoexManager.getCoexUnsafeChannels()).thenReturn(Arrays.asList( in chooseApChannelWithAllHardUnsafeSelectDefault()
748 when(mCoexManager.getCoexUnsafeChannels()).thenReturn(Arrays.asList( in testIsAvailableChannelsOnTargetBands()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DSoftApManagerTest.java2850 when(mCoexManager.getCoexUnsafeChannels()).thenReturn(Arrays.asList( in testBridgedModeKeepDueToCoexIsSoftUnsafeWhenStartingSAP()
2875 when(mCoexManager.getCoexUnsafeChannels()).thenReturn(Arrays.asList( in testBridgedModeFallbackToSingleModeDueToCoexIsHardUnsafe()
2918 when(mCoexManager.getCoexUnsafeChannels()).thenReturn(Arrays.asList( in testBridgedModeKeepWhenCoexChangedToSoftUnsafe()
2963 when(mCoexManager.getCoexUnsafeChannels()).thenReturn(Arrays.asList( in testBridgedModeShutDownInstanceDueToCoexIsHardUnsafe()
3016 when(mCoexManager.getCoexUnsafeChannels()).thenReturn(Arrays.asList( in testBridgedModeKeepWhenCoexChangedButAvailableChannelExist()
H A DWifiNativeTest.java734 when(mCoexManager.getCoexUnsafeChannels()).thenReturn(unsafeChannels); in testStartHalUpdatesCoexUnsafeChannels()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/coex/
H A DCoexManager.java277 public List<CoexUnsafeChannel> getCoexUnsafeChannels() { in getCoexUnsafeChannels() method in CoexManager
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/util/
H A DApConfigUtil.java314 for (CoexUnsafeChannel unsafeChannel : coexManager.getCoexUnsafeChannels()) { in getUnsafeChannelFreqsFromCoex()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
H A DWifiP2pServiceImplTest.java892 when(mCoexManager.getCoexUnsafeChannels()).thenReturn(Collections.emptyList()); in setUpWifiP2pServiceImpl()
4307 when(mCoexManager.getCoexUnsafeChannels()).thenReturn(unsafeChannels); in setupCoexMock()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pServiceImpl.java1003 unsafeChannels = mCoexManager.getCoexUnsafeChannels(); in checkCoexUnsafeChannels()