Home
last modified time | relevance | path

Searched refs:cellChannels (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Wifi/service/java/com/android/server/wifi/coex/
DCoexManager.java204 List<CoexUtils.CoexCellChannel> cellChannels = new ArrayList<>(); in onPhysicalChannelConfigChanged() local
206 cellChannels.add(new CoexUtils.CoexCellChannel(config, mSubId)); in onPhysicalChannelConfigChanged()
222 updateCellChannels(cellChannels); in onPhysicalChannelConfigChanged()
225 private void updateCellChannels(List<CoexUtils.CoexCellChannel> cellChannels) { in updateCellChannels() argument
226 mIsEmpty = cellChannels.isEmpty(); in updateCellChannels()
227 if (cellChannels.equals(mCellChannelsPerSubId.get(mSubId))) { in updateCellChannels()
231 mCellChannelsPerSubId.put(mSubId, cellChannels); in updateCellChannels()
457 private void updateCoexUnsafeChannels(@NonNull List<CoexUtils.CoexCellChannel> cellChannels) { in updateCoexUnsafeChannels() argument
458 if (cellChannels == null) { in updateCoexUnsafeChannels()
463 Log.v(TAG, "updateCoexUnsafeChannels called with cell channels: " + cellChannels); in updateCoexUnsafeChannels()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiShellCommand.java2605 List<CoexUtils.CoexCellChannel> cellChannels = new ArrayList<>(); in buildCoexCellChannels() local
2647 cellChannels.add(new CoexUtils.CoexCellChannel(rat, band, in buildCoexCellChannels()
2651 return cellChannels; in buildCoexCellChannels()