Searched refs:availableServices (Results 1 – 4 of 4) sorted by relevance
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | CellularNetworkService.java | 169 List<Integer> availableServices = new ArrayList<>(); in getAvailableServices() local 175 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_EMERGENCY); in getAvailableServices() 179 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_DATA); in getAvailableServices() 181 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_VOICE); in getAvailableServices() 182 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_SMS); in getAvailableServices() 183 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_VIDEO); in getAvailableServices() 187 return availableServices; in getAvailableServices() 240 List<Integer> availableServices = getAvailableServices( in createRegistrationStateFromVoiceRegState() local 246 networkType, reasonForDenial, emergencyOnly, availableServices, in createRegistrationStateFromVoiceRegState() 263 List<Integer> availableServices = getAvailableServices( in createRegistrationStateFromVoiceRegState() local [all …]
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | CellularNetworkServiceTest.java | 113 List<Integer> availableServices = new ArrayList<>(Arrays.asList(new Integer[] { in testGetNetworkRegistrationInfo() local 141 false, availableServices, null, "", cssSupported, in testGetNetworkRegistrationInfo() 152 availableServices = Arrays.asList(NetworkRegistrationInfo.SERVICE_TYPE_DATA); in testGetNetworkRegistrationInfo() 166 false, availableServices, null, "", maxDataCalls, false, false, false, in testGetNetworkRegistrationInfo()
|
/frameworks/base/telephony/java/android/telephony/ |
D | NetworkRegistrationInfo.java | 247 @Nullable @ServiceType List<Integer> availableServices, in NetworkRegistrationInfo() argument 256 mAvailableServices = (availableServices != null) in NetworkRegistrationInfo() 257 ? new ArrayList<>(availableServices) : new ArrayList<>(); in NetworkRegistrationInfo() 271 @Nullable List<Integer> availableServices, in NetworkRegistrationInfo() argument 276 emergencyOnly, availableServices, cellIdentity, rplmn); in NetworkRegistrationInfo() 289 @Nullable List<Integer> availableServices, in NetworkRegistrationInfo() argument 296 emergencyOnly, availableServices, cellIdentity, rplmn); in NetworkRegistrationInfo() 869 @NonNull @ServiceType List<Integer> availableServices) { in setAvailableServices() 870 mAvailableServices = availableServices; in setAvailableServices()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/ |
D | ControlsListingControllerImpl.kt | 78 private var availableServices = emptyList<ServiceInfo>() variable 94 availableServices = newServices in <lambda>() 166 availableServices.map { ControlsServiceInfo(context, it) } in getCurrentServices()
|