Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCellularNetworkService.java225 List<Integer> availableServices = new ArrayList<>(); in getAvailableServices() local
231 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_EMERGENCY); in getAvailableServices()
235 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_DATA); in getAvailableServices()
238 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_MMS); in getAvailableServices()
241 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_VOICE); in getAvailableServices()
242 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_SMS); in getAvailableServices()
243 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_VIDEO); in getAvailableServices()
247 return availableServices; in getAvailableServices()
300 List<Integer> availableServices = getAvailableServices( in createRegistrationStateFromVoiceRegState() local
307 networkType, reasonForDenial, emergencyOnly, availableServices, in createRegistrationStateFromVoiceRegState()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/
DControlsListingControllerImpl.kt101 private var availableServices = emptyList<ControlsServiceInfo>() variable
131 if (newServices != availableServices) { in updateServices()
132 availableServices = newServices in updateServices()
195 availableServices.map(ControlsServiceInfo::copy) in getCurrentServices()
221 return availableServices.firstOrNull { it.componentName == name } in getAppLabel()
/frameworks/base/telephony/java/android/telephony/
DNetworkRegistrationInfo.java306 boolean emergencyOnly, @Nullable @ServiceType List<Integer> availableServices, in NetworkRegistrationInfo() argument
319 mAvailableServices = (availableServices != null) in NetworkRegistrationInfo()
320 ? new ArrayList<>(availableServices) : new ArrayList<>(); in NetworkRegistrationInfo()
339 @Nullable List<Integer> availableServices, in NetworkRegistrationInfo() argument
344 emergencyOnly, availableServices, cellIdentity, rplmn, in NetworkRegistrationInfo()
356 @Nullable List<Integer> availableServices, in NetworkRegistrationInfo() argument
362 emergencyOnly, availableServices, cellIdentity, rplmn, null, in NetworkRegistrationInfo()
627 public void setAvailableServices(@NonNull @ServiceType List<Integer> availableServices) { in setAvailableServices() argument
628 mAvailableServices = new ArrayList<>(availableServices); in setAvailableServices()
1139 @NonNull @ServiceType List<Integer> availableServices) { in setAvailableServices()
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/satellite/
DNtnCapabilityResolverTest.java153 List<Integer> availableServices = new ArrayList<>(); in createNetworkRegistrationInfo() local
154 availableServices.add(SERVICE_TYPE_DATA); in createNetworkRegistrationInfo()
158 REGISTRATION_STATE_ROAMING, NETWORK_TYPE_LTE, 0, false, availableServices, in createNetworkRegistrationInfo()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DCellularNetworkServiceTest.java127 List<Integer> availableServices = new ArrayList<>(Arrays.asList(new Integer[] { in testGetNetworkRegistrationInfo() local
155 false, availableServices, null, "", cssSupported, in testGetNetworkRegistrationInfo()
166 availableServices = Arrays.asList(NetworkRegistrationInfo.SERVICE_TYPE_DATA); in testGetNetworkRegistrationInfo()
180 false, availableServices, null, "", maxDataCalls, false, false, false, in testGetNetworkRegistrationInfo()
539 List<Integer> availableServices = Arrays.asList( in testGetAvailableServices_withMmsEnabled() local
551 false, availableServices, null, "", maxDataCalls, in testGetAvailableServices_withMmsEnabled()
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/start/
DControlsStartable.kt137 val availableServices = controlsListingController.getCurrentServices() in <lambda>() constant
138 val panels = availableServices.filter { it.panelActivity != null } in <lambda>()