HomeSort by relevance Sort by last modified time
    Searched refs:ChannelCollection (Results 1 - 11 of 11) sorted by null

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
NoBandChannelHelper.java 68 * ChannelCollection that merges channels without knowing which channels are in each band. In
72 public class NoBandChannelCollection extends ChannelCollection {
179 public ChannelCollection createChannelCollection() {
BackgroundScanScheduler.java 31 import com.android.server.wifi.scanner.ChannelHelper.ChannelCollection;
134 private final ChannelCollection mChannelCollection;
189 public ChannelCollection getChannelCollection() {
613 ChannelCollection targetBucketChannelCol) {
646 ChannelCollection targetBucketChannelCol = targetBucket.getChannelCollection();
    [all...]
ChannelHelper.java 45 public abstract ChannelCollection createChannelCollection();
66 * ChannelCollection created using {@link #createChannelCollection createChannelCollection} is
77 public abstract class ChannelCollection {
WificondScannerImpl.java 33 import com.android.server.wifi.scanner.ChannelHelper.ChannelCollection;
337 ChannelCollection allFreqs = mChannelHelper.createChannelCollection();
394 ChannelCollection singleScanFreqs = mChannelHelper.createChannelCollection();
585 private static boolean isAllChannelsScanned(ChannelCollection channelCollection) {
589 return (channelCollection.containsBand(WifiScanner.WIFI_BAND_24_GHZ)
590 && channelCollection.containsBand(WifiScanner.WIFI_BAND_5_GHZ));
    [all...]
KnownBandsChannelHelper.java 133 * ChannelCollection that merges channels so that the optimal schedule will be generated.
137 public class KnownBandsChannelCollection extends ChannelCollection {
WifiScanningServiceImpl.java 62 import com.android.server.wifi.scanner.ChannelHelper.ChannelCollection;
741 ChannelCollection activeChannels = mChannelHelper.createChannelCollection();
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/
ChannelHelperTest.java 95 * {@link com.android.server.wifi.scanner.ChannelHelper.ChannelCollection}.
99 ChannelHelper.ChannelCollection mChannelCollection;
103 * Create an instance of ChannelCollection that calls all real methods, but allows mocking
108 mChannelCollection = mock(ChannelHelper.ChannelCollection.class);
BaseWifiScannerImplTest.java 42 import com.android.server.wifi.scanner.ChannelHelper.ChannelCollection;
93 ChannelCollection collection = mScanner.getChannelHelper().createChannelCollection();
99 ChannelCollection collection = mScanner.getChannelHelper().createChannelCollection();
105 ChannelCollection collection = mScanner.getChannelHelper().createChannelCollection();
WificondPnoScannerTest.java 39 import com.android.server.wifi.scanner.ChannelHelper.ChannelCollection;
407 ChannelCollection collection = mScanner.getChannelHelper().createChannelCollection();
NoBandChannelHelperTest.java 203 ChannelHelper.ChannelCollection mChannelCollection;
KnownBandsChannelHelperTest.java 263 ChannelHelper.ChannelCollection mChannelCollection;

Completed in 81 milliseconds