Home
last modified time | relevance | path

Searched refs:BucketSettings (Results 1 – 13 of 13) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/
DKnownBandsChannelHelperTest.java284 WifiNative.BucketSettings bucketSettings = new WifiNative.BucketSettings(); in empty()
305 WifiNative.BucketSettings bucketSettings = new WifiNative.BucketSettings(); in clear()
325 WifiNative.BucketSettings bucketSettings = new WifiNative.BucketSettings(); in addBand()
345 WifiNative.BucketSettings bucketSettings = new WifiNative.BucketSettings(); in addChannel_single()
366 WifiNative.BucketSettings bucketSettings = new WifiNative.BucketSettings(); in addChannel_multiple()
387 WifiNative.BucketSettings bucketSettings = new WifiNative.BucketSettings(); in addChannel_and_addBand_sameBand()
408 WifiNative.BucketSettings bucketSettings = new WifiNative.BucketSettings(); in addChannel_and_addBand_withDifferentBandChannel()
429 WifiNative.BucketSettings bucketSettings = new WifiNative.BucketSettings(); in addChannel_and_addBand_all()
451 WifiNative.BucketSettings bucketSettings = new WifiNative.BucketSettings(); in addChannel_exceedMaxChannels()
466 WifiNative.BucketSettings bucketSettings = new WifiNative.BucketSettings(); in addChannel_exceedMaxChannelsOnMultipleBands()
[all …]
DChannelHelperTest.java134 .addChannels(any(WifiNative.BucketSettings.class)); in setUp()
169 WifiNative.BucketSettings testBucket = new WifiNative.BucketSettings(); in addChannelsWifiNativeBucket_channels()
185 WifiNative.BucketSettings testBucket = new WifiNative.BucketSettings(); in addChannelsWifiNativeBucket_band()
DBackgroundScanSchedulerTest.java36 import com.android.server.wifi.WifiNative.BucketSettings;
654 protected Set<Integer> getAllChannels(BucketSettings bucket) { in getAllChannels()
733 BucketSettings bucket = schedule.buckets[b]; in assertSettingsSatisfied()
817 private void assertBucketChannels(BucketSettings bucket, Set<Integer> expectedChannelSet) { in assertBucketChannels()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DScanTestUtil.java100 mSettings.buckets = new WifiNative.BucketSettings[0]; in NativeScanSettingsBuilder()
142 WifiNative.BucketSettings bucket = new WifiNative.BucketSettings(); in addBucketWithBand()
161 WifiNative.BucketSettings bucket = new WifiNative.BucketSettings(); in addBucketWithChannels()
171 public NativeScanSettingsBuilder addBucket(WifiNative.BucketSettings bucket) { in addBucket()
455 public static Matcher<WifiNative.BucketSettings> bandIs(final int expectedBand) { in bandIs()
456 return new TypeSafeDiagnosingMatcher<WifiNative.BucketSettings>() { in bandIs()
458 public boolean matchesSafely(WifiNative.BucketSettings bucketSettings, in bandIs()
480 public static Matcher<WifiNative.BucketSettings> channelsAre(final int... expectedChannels) {
481 return new TypeSafeDiagnosingMatcher<WifiNative.BucketSettings>() {
483 public boolean matchesSafely(WifiNative.BucketSettings bucketSettings,
DWifiVendorHalTest.java3291 WifiNative.BucketSettings bucketSettings = new WifiNative.BucketSettings(); in startBgScan()
3295 settings.buckets = new WifiNative.BucketSettings[] {bucketSettings}; in startBgScan()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
DChannelHelper.java140 public void addChannels(WifiNative.BucketSettings bucketSettings) { in addChannels()
222 public abstract void fillBucketSettings(WifiNative.BucketSettings bucket, int maxChannels); in fillBucketSettings()
254 public static String toString(WifiNative.BucketSettings bucketSettings) { in toString()
DScanScheduleUtil.java50 public static boolean bucketEquals(@Nullable WifiNative.BucketSettings bucket1, in bucketEquals()
51 @Nullable WifiNative.BucketSettings bucket2) { in bucketEquals()
DBackgroundScanScheduler.java196 public WifiNative.BucketSettings createBucketSettings(int bucketId, int maxChannels) { in createBucketSettings()
234 WifiNative.BucketSettings bucketSettings = new WifiNative.BucketSettings(); in createBucketSettings()
439 schedule.buckets = new WifiNative.BucketSettings[bucketList.size()]; in createSchedule()
DWifiScanningServiceImpl.java883 WifiNative.BucketSettings activeBucket = mActiveScanSettings.buckets[0]; in activeScanSatisfies()
943 WifiNative.BucketSettings bucketSettings = new WifiNative.BucketSettings(); in tryToStartNewScan()
976 settings.buckets = new WifiNative.BucketSettings[] {bucketSettings}; in tryToStartNewScan()
1389 WifiNative.BucketSettings bucket = schedule.buckets[b]; in updateSchedule()
1408 WifiNative.BucketSettings bucket = schedule.buckets[b]; in updateSchedule()
2164 WifiNative.BucketSettings bucket = schedule.buckets[b]; in dump()
DKnownBandsChannelHelper.java247 public void fillBucketSettings(WifiNative.BucketSettings bucketSettings, int maxChannels) { in fillBucketSettings()
DWificondScannerImpl.java168 WifiNative.BucketSettings bucketSettings = settings.buckets[i]; in startSingleScan()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiNative.java2428 public static class BucketSettings { class in WifiNative
2479 public BucketSettings[] buckets;
DWifiVendorHal.java667 for (WifiNative.BucketSettings bs : settings.buckets) { in CurrentBackgroundScan()
682 makeStaBackgroundScanBucketParametersFromBucketSettings(WifiNative.BucketSettings bs) { in makeStaBackgroundScanBucketParametersFromBucketSettings()