Home
last modified time | relevance | path

Searched refs:CoexCellChannel (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Wifi/service/java/com/android/server/wifi/coex/
DCoexManager.java204 List<CoexUtils.CoexCellChannel> cellChannels = new ArrayList<>(); in onPhysicalChannelConfigChanged()
206 cellChannels.add(new CoexUtils.CoexCellChannel(config, mSubId)); in onPhysicalChannelConfigChanged()
225 private void updateCellChannels(List<CoexUtils.CoexCellChannel> cellChannels) { in updateCellChannels()
254 private final SparseArray<List<CoexUtils.CoexCellChannel>> mCellChannelsPerSubId =
257 private final List<CoexUtils.CoexCellChannel> mMockCellChannels = new ArrayList<>();
457 private void updateCoexUnsafeChannels(@NonNull List<CoexUtils.CoexCellChannel> cellChannels) { in updateCoexUnsafeChannels()
473 for (CoexUtils.CoexCellChannel cellChannel : cellChannels) { in updateCoexUnsafeChannels()
579 for (CoexUtils.CoexCellChannel victimCellChannel : cellChannels) { in updateCoexUnsafeChannels()
605 for (CoexUtils.CoexCellChannel victimCellChannel : cellChannels) { in updateCoexUnsafeChannels()
850 public void setMockCellChannels(@NonNull List<CoexUtils.CoexCellChannel> cellChannels) { in setMockCellChannels()
[all …]
DCoexUtils.java641 public static class CoexCellChannel { class in CoexUtils
650 public CoexCellChannel(@Annotation.NetworkType int rat, int band, in CoexCellChannel() method in CoexUtils.CoexCellChannel
690 public CoexCellChannel( in CoexCellChannel() method in CoexUtils.CoexCellChannel
745 if (!(o instanceof CoexCellChannel)) return false; in equals()
746 CoexCellChannel that = (CoexCellChannel) o; in equals()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiShellCommand.java2604 private List<CoexUtils.CoexCellChannel> buildCoexCellChannels() { in buildCoexCellChannels()
2605 List<CoexUtils.CoexCellChannel> cellChannels = new ArrayList<>(); in buildCoexCellChannels()
2647 cellChannels.add(new CoexUtils.CoexCellChannel(rat, band, in buildCoexCellChannels()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/coex/
DCoexManagerTest.java626 new CoexUtils.CoexCellChannel(NETWORK_TYPE_LTE, 40, 2399_900, 10_000, 0, 0, in testGetCoexUnsafeChannels_mockCellChannelsAdded_mockCellChannelsUsed()