Home
last modified time | relevance | path

Searched refs:bands (Results 1 – 8 of 8) sorted by relevance

/cts/tests/tests/telephony/current/src/android/telephony/cts/
DRadioAccessSpecifierTest.java31 int[] bands = {1, 2, 3, 4}; in testConstructorAndGetters() local
33 RadioAccessSpecifier radioAccessSpecifier = new RadioAccessSpecifier(ran, bands, channels); in testConstructorAndGetters()
36 assertThat(radioAccessSpecifier.getBands()).isEqualTo(bands); in testConstructorAndGetters()
40 RadioAccessSpecifier toCompare1 = new RadioAccessSpecifier(ran, bands, channels); in testConstructorAndGetters()
43 RadioAccessSpecifier toCompare3 = new RadioAccessSpecifier(ran+1, bands, channels); in testConstructorAndGetters()
DAvailableNetworkInfoTest.java40 private static List<Integer> bands = new ArrayList<Integer>(); field in AvailableNetworkInfoTest
54 AvailableNetworkInfo.PRIORITY_HIGH, mccMncs, bands); in testAvailableNetworkInfo()
59 assertEquals(bands, availableNetworkInfo.getBands()); in testAvailableNetworkInfo()
103 assertEquals(bands, availableNetworkInfo.getBands()); in testAvailableNetworkInfoBuilder_success()
DCellInfoTest.java605 int[] bands = nr.getBands(); in verifyCellIdentityNr() local
607 for (int band: bands) { in verifyCellIdentityNr()
612 verifyCellIdentityNrBands(bands); in verifyCellIdentityNr()
736 int[] bands = lte.getBands(); in verifyCellIdentityLte() local
738 for (int band: bands) { in verifyCellIdentityLte()
742 verifyCellIdentityLteBands(bands); in verifyCellIdentityLte()
DTelephonyManagerTest.java3546 List<Integer> bands = new ArrayList<Integer>(); in testUpdateAvailableNetworks() local
3556 AvailableNetworkInfo.PRIORITY_HIGH, mccMncs, bands); in testUpdateAvailableNetworks()
3571 AvailableNetworkInfo.PRIORITY_HIGH, mccMncs, bands); in testUpdateAvailableNetworks()
5440 int[] bands; in testGetAllCellInfo() local
5442 bands = ((CellIdentityLte) cellIdentity).getBands(); in testGetAllCellInfo()
5443 if (cellInfo.isRegistered()) assertTrue(bands.length > 0); in testGetAllCellInfo()
5444 for (int band : bands) { in testGetAllCellInfo()
5449 bands = ((CellIdentityNr) cellIdentity).getBands(); in testGetAllCellInfo()
5450 if (cellInfo.isRegistered()) assertTrue(bands.length > 0); in testGetAllCellInfo()
5451 for (int band : bands) { in testGetAllCellInfo()
/cts/tests/tests/wifi/src/android/net/wifi/cts/
DWifiNetworkSpecifierTest.java415 final int[] bands = { ScanResult.WIFI_BAND_24_GHZ, ScanResult.WIFI_BAND_5_GHZ, in testWifiBandInNetworkCallback() local
418 for (final int band : bands) { in testWifiBandInNetworkCallback()
DWifiManagerTest.java2864 private boolean shouldFallbackToSingleAp(int[] bands, SoftApCapability capability) { in shouldFallbackToSingleAp() argument
2865 for (int band : bands) { in shouldFallbackToSingleAp()
2874 final int[] bands = {SoftApConfiguration.BAND_2GHZ, SoftApConfiguration.BAND_5GHZ, in getAvailableBandAndChannelForTesting() local
2881 for (int band : bands) { in getAvailableBandAndChannelForTesting()
6624 public void accept(List<int[]> bands) { in testGetSupportedSimultaneousBandCombinations()
6626 nEntries.set(bands.size()); in testGetSupportedSimultaneousBandCombinations()
/cts/tests/tests/carrierapi/src/android/carrierapi/cts/
DCarrierApiTest.java294 List<Integer> bands = new ArrayList<Integer>(); in testUpdateAvailableNetworksWithCarrierPrivilege() local
310 bands); in testUpdateAvailableNetworksWithCarrierPrivilege()
338 bands); in testUpdateAvailableNetworksWithCarrierPrivilege()
/cts/tests/tests/telephony/current/mockmodem/src/android/telephony/mockmodem/
DMockNetworkConfig.java135 lte.cellIdentityLte.bands = new int[0]; in loadLteCellIdentity()