Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiApConfigStore.java322 SparseIntArray newChannels = new SparseIntArray(); in sanitizePersistentApConfig() local
345 newChannels.put(newBand, channel); in sanitizePersistentApConfig()
348 convertedConfigBuilder.setChannels(newChannels); in sanitizePersistentApConfig()
349 } else if (bands.length > 0 && newChannels.valueAt(0) == 0) { in sanitizePersistentApConfig()
350 convertedConfigBuilder.setBand(newChannels.keyAt(0)); in sanitizePersistentApConfig()
/packages/apps/TV/src/com/android/tv/data/epg/
DEpgFetcherImpl.java839 Set<EpgReader.EpgChannel> newChannels = new HashSet<>(); in onChannelUpdatedDuringScan() local
843 newChannels.add(epgChannel); in onChannelUpdatedDuringScan()
847 if (!newChannels.isEmpty()) { in onChannelUpdatedDuringScan()
848 EpgFetchHelper.updateNetworkAffiliation(mContext, newChannels); in onChannelUpdatedDuringScan()
850 batchFetchEpg(newChannels, FETCH_DURING_SCAN_DURATION_SEC); in onChannelUpdatedDuringScan()
/packages/modules/Wifi/service/java/com/android/server/wifi/util/
DApConfigUtil.java687 SparseIntArray newChannels = new SparseIntArray(channels.size()); in remove6gBandForUnsupportedSecurity() local
696 newChannels.put(band, channels.valueAt(i)); in remove6gBandForUnsupportedSecurity()
698 builder.setChannels(newChannels); in remove6gBandForUnsupportedSecurity()