Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCellularNetworkService.java169 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()
237 List<Integer> availableServices = getAvailableServices( in createRegistrationStateFromVoiceRegState() local
243 networkType, reasonForDenial, emergencyOnly, availableServices, in createRegistrationStateFromVoiceRegState()
257 List<Integer> availableServices = getAvailableServices( in createRegistrationStateFromVoiceRegState() local
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DCellularNetworkServiceTest.java113 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/
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()
896 @NonNull @ServiceType List<Integer> availableServices) { in setAvailableServices()
897 mAvailableServices = availableServices; in setAvailableServices()