Home
last modified time | relevance | path

Searched refs:getNeighboringCoexUnsafeChannels (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/coex/
DCoexUtilsTest.java28 import static com.android.server.wifi.coex.CoexUtils.getNeighboringCoexUnsafeChannels;
73 assertThat(getNeighboringCoexUnsafeChannels(getLowerFreqKhz(1, WIFI_BAND_24_GHZ) - 100_000, in testGetNeighboringCoexUnsafeChannels_noOverlap_returnsEmptySet()
75 assertThat(getNeighboringCoexUnsafeChannels(getUpperFreqKhz(14, WIFI_BAND_24_GHZ) + 100_000, in testGetNeighboringCoexUnsafeChannels_noOverlap_returnsEmptySet()
77 assertThat(getNeighboringCoexUnsafeChannels(2595_000, in testGetNeighboringCoexUnsafeChannels_noOverlap_returnsEmptySet()
81 assertThat(getNeighboringCoexUnsafeChannels(getLowerFreqKhz(32, WIFI_BAND_5_GHZ) - 100_000, in testGetNeighboringCoexUnsafeChannels_noOverlap_returnsEmptySet()
83 assertThat(getNeighboringCoexUnsafeChannels(getUpperFreqKhz(173, WIFI_BAND_5_GHZ) + 100_000, in testGetNeighboringCoexUnsafeChannels_noOverlap_returnsEmptySet()
98 assertThat(getNeighboringCoexUnsafeChannels(2401_000, in testGetNeighboringCoexUnsafeChannels_2g_returnsCorrectOverlap()
107 assertThat(getNeighboringCoexUnsafeChannels(2495_000, in testGetNeighboringCoexUnsafeChannels_2g_returnsCorrectOverlap()
131 assertThat(getNeighboringCoexUnsafeChannels(5150_000, in testGetNeighboringCoexUnsafeChannels_5g_returnsCorrectOverlap()
157 assertThat(getNeighboringCoexUnsafeChannels(5875_000, in testGetNeighboringCoexUnsafeChannels_5g_returnsCorrectOverlap()
/packages/modules/Wifi/service/java/com/android/server/wifi/coex/
DCoexManager.java38 import static com.android.server.wifi.coex.CoexUtils.getNeighboringCoexUnsafeChannels;
514 getNeighboringCoexUnsafeChannels( in updateCoexUnsafeChannels()
532 getNeighboringCoexUnsafeChannels( in updateCoexUnsafeChannels()
DCoexUtils.java356 public static List<CoexUnsafeChannel> getNeighboringCoexUnsafeChannels( in getNeighboringCoexUnsafeChannels() method in CoexUtils