Searched refs:availableServices (Results 1 – 3 of 3) sorted by relevance
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | CellularNetworkService.java | 175 List<Integer> availableServices = new ArrayList<>(); in getAvailableServices() local 181 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_EMERGENCY); in getAvailableServices() 185 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_DATA); in getAvailableServices() 187 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_VOICE); in getAvailableServices() 188 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_SMS); in getAvailableServices() 189 availableServices.add(NetworkRegistrationInfo.SERVICE_TYPE_VIDEO); in getAvailableServices() 193 return availableServices; in getAvailableServices() 229 List<Integer> availableServices = getAvailableServices( in createRegistrationStateFromVoiceRegState() local 235 networkType, reasonForDenial, emergencyOnly, availableServices, in createRegistrationStateFromVoiceRegState() 252 List<Integer> availableServices = getAvailableServices( in createRegistrationStateFromVoiceRegState() local [all …]
|
/frameworks/base/telephony/java/android/telephony/ |
D | NetworkRegistrationInfo.java | 209 @Nullable @ServiceType List<Integer> availableServices, in NetworkRegistrationInfo() argument 218 mAvailableServices = (availableServices != null) in NetworkRegistrationInfo() 219 ? new ArrayList<>(availableServices) : new ArrayList<>(); in NetworkRegistrationInfo() 232 @Nullable List<Integer> availableServices, in NetworkRegistrationInfo() argument 237 emergencyOnly, availableServices, cellIdentity); in NetworkRegistrationInfo() 250 @Nullable List<Integer> availableServices, in NetworkRegistrationInfo() argument 257 emergencyOnly, availableServices, cellIdentity); in NetworkRegistrationInfo() 758 @NonNull @ServiceType List<Integer> availableServices) { in setAvailableServices() 759 mAvailableServices = availableServices; in setAvailableServices()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | CellularNetworkServiceTest.java | 112 List<Integer> availableServices = new ArrayList<>(Arrays.asList(new Integer[] { in testGetNetworkRegistrationInfo() local 142 false, availableServices, null, cssSupported, in testGetNetworkRegistrationInfo() 153 availableServices = Arrays.asList(NetworkRegistrationInfo.SERVICE_TYPE_DATA); in testGetNetworkRegistrationInfo() 169 false, availableServices, null, maxDataCalls, false, false, false, in testGetNetworkRegistrationInfo()
|