Searched refs:mChannelHelper (Results 1 – 7 of 7) sorted by relevance
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/scanner/ |
D | ScanScheduleUtilFilterTest.java | 48 private ChannelHelper mChannelHelper; field in ScanScheduleUtilFilterTest 52 mChannelHelper = new PresetKnownBandsChannelHelper( in setUp() 67 assertTrue(ScanScheduleUtil.shouldReportFullScanResultForSettings(mChannelHelper, in reportFullResultTrueForBandsWithNoBucketInfo() 78 assertFalse(ScanScheduleUtil.shouldReportFullScanResultForSettings(mChannelHelper, in reportFullResultFalseForBandsWithNoBucketInfo() 89 assertTrue(ScanScheduleUtil.shouldReportFullScanResultForSettings(mChannelHelper, in reportFullResultTrueForChannelsWithNoBucketInfo() 100 assertFalse(ScanScheduleUtil.shouldReportFullScanResultForSettings(mChannelHelper, in reportFullResultFalseForChannelsWithNoBucketInfo() 111 assertTrue(ScanScheduleUtil.shouldReportFullScanResultForSettings(mChannelHelper, in reportFullResultTrueForChannelsWithBucketDefinitlyScanned() 122 assertFalse(ScanScheduleUtil.shouldReportFullScanResultForSettings(mChannelHelper, in reportFullResultFalseForChannelsWithBucketDefinitlyNotScanned() 133 ScanData[] results = ScanScheduleUtil.filterResultsForSettings(mChannelHelper, in filterScanDataEmptyWithNoBucketInfo() 145 ScanData[] results = ScanScheduleUtil.filterResultsForSettings(mChannelHelper, in filterScanDataSingleNotMatchingWithNoBucketInfo() [all …]
|
D | KnownBandsChannelHelperTest.java | 65 KnownBandsChannelHelper mChannelHelper; field in KnownBandsChannelHelperTest.EstimateScanDurationTest 73 mChannelHelper = new PresetKnownBandsChannelHelper( in setUp() 90 mChannelHelper.estimateScanDuration(testSettings)); in fewChannels() 102 mChannelHelper.estimateScanDuration(testSettings)); in band() 112 KnownBandsChannelHelper mChannelHelper; field in KnownBandsChannelHelperTest.GetAvailableScanChannelsTest 120 mChannelHelper = new PresetKnownBandsChannelHelper( in setUp() 130 mChannelHelper.getAvailableScanChannels(band); in testBand() 212 KnownBandsChannelHelper mChannelHelper; field in KnownBandsChannelHelperTest.SettingsContainChannelTest 220 mChannelHelper = new PresetKnownBandsChannelHelper( in setUp() 236 assertFalse(mChannelHelper.settingsContainChannel(testSettings, 2412)); in emptySettings() [all …]
|
D | BackgroundScanSchedulerTest.java | 61 private KnownBandsChannelHelper mChannelHelper; field in BackgroundScanSchedulerTest 66 mChannelHelper = new PresetKnownBandsChannelHelper( in setUp() 72 mScheduler = new BackgroundScanScheduler(mChannelHelper); in setUp() 482 KnownBandsChannelCollection collection = mChannelHelper.createChannelCollection(); in optimalScheduleFullyCollapsesDuplicateChannelsInBand() 596 KnownBandsChannelCollection collection = mChannelHelper.createChannelCollection(); in optimalSchedulePartiallyCollapsesDuplicateChannelsAcrossMultipleBuckets() 645 KnownBandsChannelCollection collection = mChannelHelper.createChannelCollection(); in optimalSchedulePartiallyCollapsesDuplicateChannelsWithSplitBuckets() 658 KnownBandsChannelCollection collection = mChannelHelper.createChannelCollection(); in getAllChannels() 664 KnownBandsChannelCollection collection = mChannelHelper.createChannelCollection(); in getAllChannels() 735 KnownBandsChannelCollection scheduleChannels = mChannelHelper.createChannelCollection(); in assertSettingsSatisfied()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/scanner/ |
D | HalWifiScannerImpl.java | 44 private final ChannelHelper mChannelHelper; field in HalWifiScannerImpl 52 mChannelHelper = new WificondChannelHelper(wifiNative); in HalWifiScannerImpl() 55 wifiMonitor, mChannelHelper, looper, clock); in HalWifiScannerImpl() 77 return mChannelHelper; in getChannelHelper()
|
D | WificondScannerImpl.java | 70 private final ChannelHelper mChannelHelper; field in WificondScannerImpl 106 mChannelHelper = channelHelper; in WificondScannerImpl() 150 return mChannelHelper; in getChannelHelper() 167 ChannelCollection allFreqs = mChannelHelper.createChannelCollection(); in startSingleScan()
|
D | BackgroundScanScheduler.java | 140 mChannelCollection = mChannelHelper.createChannelCollection(); in Bucket() 363 private final ChannelHelper mChannelHelper; field in BackgroundScanScheduler 369 mChannelHelper = channelHelper; in BackgroundScanScheduler() 406 return ScanScheduleUtil.shouldReportFullScanResultForSettings(mChannelHelper, in shouldReportFullScanResultForSettings() 416 return ScanScheduleUtil.filterResultsForSettings(mChannelHelper, scanDatas, settings, in filterResultsForSettings()
|
D | WifiScanningServiceImpl.java | 159 if (mChannelHelper == null) return new ChannelSpec[0][0]; in getAvailableChannels() 160 mChannelHelper.updateChannels(); in getAvailableChannels() 161 return mChannelHelper.getAvailableScanChannels(band); in getAvailableChannels() 673 private ChannelHelper mChannelHelper; field in WifiScanningServiceImpl 1569 ChannelCollection activeChannels = mChannelHelper.createChannelCollection(); in activeScanSatisfies() 1614 mChannelHelper.updateChannels(); in tryToStartNewScan() 1623 ChannelCollection channels = mChannelHelper.createChannelCollection(); in tryToStartNewScan() 1625 mChannelHelper.getAvailableScanChannels(WifiScanner.WIFI_BAND_6_GHZ); in tryToStartNewScan() 1710 if (ScanScheduleUtil.shouldReportFullScanResultForSettings(mChannelHelper, in reportFullScanSingleResult() 1737 if (ScanScheduleUtil.shouldReportFullScanResultForSettings(mChannelHelper, in reportFullScanAllResults() [all …]
|