Home
last modified time | relevance | path

Searched refs:supportedServicesBundle (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/satellite/
DSatelliteServiceUtilsTest.java60 PersistableBundle supportedServicesBundle = new PersistableBundle(); in testParseSupportedSatelliteServicesFromPersistableBundle() local
73 SatelliteServiceUtils.parseSupportedSatelliteServices(supportedServicesBundle); in testParseSupportedSatelliteServicesFromPersistableBundle()
77 supportedServicesBundle.putIntArray(plmn1, supportedServicesForPlmn1); in testParseSupportedSatelliteServicesFromPersistableBundle()
78 supportedServicesBundle.putIntArray(plmn2, supportedServicesForPlmn2); in testParseSupportedSatelliteServicesFromPersistableBundle()
79 supportedServicesBundle.putIntArray(plmn3, new int[0]); in testParseSupportedSatelliteServicesFromPersistableBundle()
80 supportedServicesBundle.putIntArray(plmn4, supportedServicesForPlmn1); in testParseSupportedSatelliteServicesFromPersistableBundle()
81 supportedServicesBundle.putIntArray(plmn5, supportedServicesForPlmn2); in testParseSupportedSatelliteServicesFromPersistableBundle()
84 SatelliteServiceUtils.parseSupportedSatelliteServices(supportedServicesBundle); in testParseSupportedSatelliteServicesFromPersistableBundle()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/satellite/
DSatelliteServiceUtils.java296 PersistableBundle supportedServicesBundle) { in parseSupportedSatelliteServices() argument
298 if (supportedServicesBundle == null || supportedServicesBundle.isEmpty()) { in parseSupportedSatelliteServices()
302 for (String plmn : supportedServicesBundle.keySet()) { in parseSupportedSatelliteServices()
305 for (int serviceType : supportedServicesBundle.getIntArray(plmn)) { in parseSupportedSatelliteServices()