Searched refs:bandwidths (Results 1 – 5 of 5) sorted by relevance
40 int[] bandwidths = new int[] {1400, 5000}; in testUpdateBandwidthsSuccess() local43 boolean updated = RatRatcheter.updateBandwidths(bandwidths, mServiceState); in testUpdateBandwidthsSuccess()46 assertTrue(Arrays.equals(mServiceState.getCellBandwidths(), bandwidths)); in testUpdateBandwidthsSuccess() local
1635 private void sendPhyChanConfigChange(int[] bandwidths) { in sendPhyChanConfigChange() argument1638 for (int bw : bandwidths) { in sendPhyChanConfigChange()
60 public static boolean updateBandwidths(int[] bandwidths, ServiceState serviceState) { in updateBandwidths() argument61 if (bandwidths == null) { in updateBandwidths()66 int newAggregateBandwidth = Arrays.stream(bandwidths).sum(); in updateBandwidths()69 serviceState.setCellBandwidths(bandwidths); in updateBandwidths()
2055 int[] bandwidths = null; in setPhyCellInfoFromCellIdentity() local2059 bandwidths = getBandwidthsFromConfigs(mLastPhysicalChannelConfigList); in setPhyCellInfoFromCellIdentity()2060 for (int bw : bandwidths) { in setPhyCellInfoFromCellIdentity()2063 bandwidths = null; in setPhyCellInfoFromCellIdentity()2078 if (bandwidths == null || bandwidths.length == 1) { in setPhyCellInfoFromCellIdentity()2081 bandwidths = new int[] {cbw}; in setPhyCellInfoFromCellIdentity()2089 if (bandwidths != null) { in setPhyCellInfoFromCellIdentity()2090 ss.setCellBandwidths(bandwidths); in setPhyCellInfoFromCellIdentity()
980 public void setCellBandwidths(int[] bandwidths) { in setCellBandwidths() argument981 mCellBandwidths = bandwidths; in setCellBandwidths()