Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/java/com/android/server/wifi/coex/
DCoexManager.java488 final int uplinkBandwidthKhz = cellChannel.getUplinkBandwidthKhz(); in updateCoexUnsafeChannels() local
529 if (uplinkFreqKhz >= 0 && uplinkBandwidthKhz > 0) { in updateCoexUnsafeChannels()
534 uplinkBandwidthKhz, in updateCoexUnsafeChannels()
549 uplinkBandwidthKhz, in updateCoexUnsafeChannels()
565 uplinkBandwidthKhz, in updateCoexUnsafeChannels()
585 uplinkBandwidthKhz, in updateCoexUnsafeChannels()
611 uplinkBandwidthKhz, in updateCoexUnsafeChannels()
729 if (uplinkFreqKhz >= 0 && uplinkBandwidthKhz >= 0) { in updateCoexUnsafeChannels()
731 uplinkFreqKhz, uplinkBandwidthKhz, in updateCoexUnsafeChannels()
DCoexUtils.java652 int uplinkFreqKhz, int uplinkBandwidthKhz, int subId) { in CoexCellChannel() argument
672 if (uplinkBandwidthKhz <= 0 in CoexCellChannel()
673 && uplinkBandwidthKhz != PhysicalChannelConfig.CELL_BANDWIDTH_UNKNOWN) { in CoexCellChannel()
674 Log.wtf(TAG, "Uplink bandwidth is " + uplinkBandwidthKhz + " but should be > 0" in CoexCellChannel()
683 mUplinkBandwidthKhz = uplinkBandwidthKhz; in CoexCellChannel()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiShellCommand.java2640 final int uplinkBandwidthKhz = Integer.parseInt(getNextArgRequired()); in buildCoexCellChannels() local
2641 if (uplinkBandwidthKhz <= 0 in buildCoexCellChannels()
2642 && uplinkBandwidthKhz != PhysicalChannelConfig.CELL_BANDWIDTH_UNKNOWN) { in buildCoexCellChannels()
2643 throw new IllegalArgumentException("Uplink bandwidth is " + uplinkBandwidthKhz in buildCoexCellChannels()
2648 downlinkFreqKhz, downlinkBandwidthKhz, uplinkFreqKhz, uplinkBandwidthKhz, in buildCoexCellChannels()