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

  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/
NoBandChannelHelperTest.java 203 ChannelHelper.ChannelCollection mChannelCollection;
211 mChannelCollection = new NoBandChannelHelper().createChannelCollection();
220 mChannelCollection.fillBucketSettings(bucketSettings, Integer.MAX_VALUE);
224 mChannelCollection.getSupplicantScanFreqs());
226 assertTrue(mChannelCollection.isEmpty());
227 assertFalse(mChannelCollection.containsChannel(2400));
235 mChannelCollection.addBand(WifiScanner.WIFI_BAND_24_GHZ);
236 mChannelCollection.clear();
239 mChannelCollection.fillBucketSettings(bucketSettings, Integer.MAX_VALUE);
243 mChannelCollection.getSupplicantScanFreqs())
    [all...]
KnownBandsChannelHelperTest.java 263 ChannelHelper.ChannelCollection mChannelCollection;
275 mChannelCollection = channelHelper.createChannelCollection();
284 mChannelCollection.fillBucketSettings(bucketSettings, Integer.MAX_VALUE);
288 mChannelCollection.getSupplicantScanFreqs());
290 assertTrue(mChannelCollection.isEmpty());
291 assertFalse(mChannelCollection.containsChannel(2400));
292 assertFalse(mChannelCollection.containsChannel(5150));
300 mChannelCollection.addBand(WifiScanner.WIFI_BAND_24_GHZ);
301 mChannelCollection.clear();
304 mChannelCollection.fillBucketSettings(bucketSettings, Integer.MAX_VALUE)
    [all...]
ChannelHelperTest.java 99 ChannelHelper.ChannelCollection mChannelCollection;
108 mChannelCollection = mock(ChannelHelper.ChannelCollection.class);
109 doCallRealMethod().when(mChannelCollection)
111 doCallRealMethod().when(mChannelCollection)
123 mChannelCollection.addChannels(testSettings);
125 verify(mChannelCollection).addChannel(2400);
126 verify(mChannelCollection).addChannel(5150);
137 mChannelCollection.addChannels(testSettings);
139 verify(mChannelCollection).addBand(WifiScanner.WIFI_BAND_BOTH);
152 mChannelCollection.addChannels(testBucket)
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
BackgroundScanScheduler.java 135 private final ChannelCollection mChannelCollection;
141 mChannelCollection = mChannelHelper.createChannelCollection();
164 mChannelCollection.addChannels(scanSettings);
184 mChannelCollection.clear();
186 mChannelCollection.addChannels(settings);
191 return mChannelCollection;
241 mChannelCollection.fillBucketSettings(bucketSettings, maxChannels);
    [all...]

Completed in 533 milliseconds