Home | History | Annotate | Download | only in telephony

Lines Matching refs:bands

27  * The scan can be performed on either bands or channels for a specific radio access network type.
40 * The frequency bands that need to be scanned
42 * bands must be used together with radioAccessNetwork
46 public int[] bands;
58 * Creates a new RadioAccessSpecifier with radio network, bands and channels
61 * bands or channels.
64 * @param bands the frequency bands to be scanned
65 * @param channels the frequency bands to be scanned
67 public RadioAccessSpecifier(int ran, int[] bands, int[] channels) {
69 this.bands = bands;
94 dest.writeIntArray(bands);
100 bands = in.createIntArray();
119 && Arrays.equals(bands, ras.bands)
126 + (Arrays.hashCode(bands) * 37)