Home
last modified time | relevance | path

Searched refs:activeSubIds (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Settings/src/com/android/settings/network/telephony/wificalling/
DCrossSimCallingViewModel.kt63 val activeSubIds = subscriptionManager.activeSubscriptionIdList.toList() in <lambda>() constant
65 activeSubIds.anyMobileDataEnableChangedFlow(), in <lambda>()
68 activeSubIds to crossSimCallNewEnabled(activeSubIds) in <lambda>()
72 .onEach { (activeSubIds, newEnabled) -> in <lambda>() method
73 updateCrossSimCalling(activeSubIds, newEnabled) in <lambda>()
87 private suspend fun updateCrossSimCalling(activeSubIds: List<Int>, newEnabled: Boolean) { in <lambda>()
93 activeSubIds.filter { crossSimAvailable(it) }.forEach { subId -> in <lambda>()
/packages/services/Telephony/src/com/android/phone/settings/
DAccessibilitySettingsFragment.java186 int[] activeSubIds = SubscriptionManagerService.getInstance().getActiveSubIdList(true); in onPreferenceTreeClick() local
188 for (int subId : activeSubIds) { in onPreferenceTreeClick()
/packages/services/Telephony/src/com/android/phone/
DSimPhonebookProvider.java207 int[] activeSubIds = mSubscriptionManager.getActiveSubscriptionIdList(); in onCreate() local
208 if (!Arrays.equals(mNotifiedSubIds, activeSubIds)) { in onCreate()
210 mNotifiedSubIds = Arrays.copyOf(activeSubIds, activeSubIds.length); in onCreate()
/packages/apps/Settings/src/com/android/settings/network/telephony/
DMobileNetworkUtils.java721 int[] activeSubIds = new int[subInfoList.size()]; in getActiveSubscriptionIdList() local
724 activeSubIds[i] = subInfo.getSubscriptionId(); in getActiveSubscriptionIdList()
727 return activeSubIds; in getActiveSubscriptionIdList()
/packages/services/Telephony/src/com/android/services/telephony/
DTelecomAccountRegistry.java616 int[] activeSubIds = SubscriptionManagerService.getInstance() in isEmergencyPreferredAccount() local
618 if (activeSubIds == null || activeSubIds.length <= 1) { in isEmergencyPreferredAccount()