Home
last modified time | relevance | path

Searched refs:availableServices (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCellularNetworkService.java172 List<Integer> availableServices = new ArrayList<>(); in getAvailableServices() local
178 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_EMERGENCY); in getAvailableServices()
182 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_DATA); in getAvailableServices()
184 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_VOICE); in getAvailableServices()
185 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_SMS); in getAvailableServices()
186 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_VIDEO); in getAvailableServices()
190 return availableServices; in getAvailableServices()
246 List<Integer> availableServices = getAvailableServices( in createRegistrationStateFromVoiceRegState() local
252 networkType, reasonForDenial, emergencyOnly, availableServices, in createRegistrationStateFromVoiceRegState()
266 List<Integer> availableServices = getAvailableServices( in createRegistrationStateFromVoiceRegState() local
[all …]
/frameworks/base/telephony/java/android/telephony/
DNetworkRegistrationInfo.java250 @Nullable @ServiceType List<Integer> availableServices, in NetworkRegistrationInfo() argument
259 mAvailableServices = (availableServices != null) in NetworkRegistrationInfo()
260 ? new ArrayList<>(availableServices) : new ArrayList<>(); in NetworkRegistrationInfo()
274 @Nullable List<Integer> availableServices, in NetworkRegistrationInfo() argument
279 emergencyOnly, availableServices, cellIdentity, rplmn); in NetworkRegistrationInfo()
292 @Nullable List<Integer> availableServices, in NetworkRegistrationInfo() argument
298 emergencyOnly, availableServices, cellIdentity, rplmn); in NetworkRegistrationInfo()
901 @NonNull @ServiceType List<Integer> availableServices) { in setAvailableServices()
902 mAvailableServices = availableServices; in setAvailableServices()
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/
DControlsListingControllerImpl.kt80 private var availableServices = emptyList<ServiceInfo>() variable
96 availableServices = newServices in <lambda>()
168 availableServices.map { ControlsServiceInfo(context, it) } in getCurrentServices()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DCellularNetworkServiceTest.java115 List<Integer> availableServices = new ArrayList<>(Arrays.asList(new Integer[] { in testGetNetworkRegistrationInfo() local
143 false, availableServices, null, "", cssSupported, in testGetNetworkRegistrationInfo()
154 availableServices = Arrays.asList(NetworkRegistrationInfo.SERVICE_TYPE_DATA); in testGetNetworkRegistrationInfo()
168 false, availableServices, null, "", maxDataCalls, false, false, false, in testGetNetworkRegistrationInfo()