Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/unit/src/com/android/settings/network/
DUiccSlotUtilTest.java379 Collection<SubscriptionInfo> activeSubscriptionInfoList = in getExcludedLogicalSlotIndex_fromPsimActiveToEsimPort0Active_logicalSlot0() local
385 uiccSlotMappings, activeSubscriptionInfoList, removedSubInfo, false); in getExcludedLogicalSlotIndex_fromPsimActiveToEsimPort0Active_logicalSlot0()
393 Collection<SubscriptionInfo> activeSubscriptionInfoList = in getExcludedLogicalSlotIndex_fromEsimPort0ActiveToPsimActive_logicalSlot0() local
399 uiccSlotMappings, activeSubscriptionInfoList, removedSubInfo, false); in getExcludedLogicalSlotIndex_fromEsimPort0ActiveToPsimActive_logicalSlot0()
407 Collection<SubscriptionInfo> activeSubscriptionInfoList = in getExcludedLogicalSlotIndex_fromPsimAndPort0ToPsimAndPort1_logicalSlot1() local
413 uiccSlotMappings, activeSubscriptionInfoList, removedSubInfo, true); in getExcludedLogicalSlotIndex_fromPsimAndPort0ToPsimAndPort1_logicalSlot1()
421 Collection<SubscriptionInfo> activeSubscriptionInfoList = in getExcludedLogicalSlotIndex_fromPsimAndPort1ToPsimAndPort0_logicalSlot1() local
427 uiccSlotMappings, activeSubscriptionInfoList, removedSubInfo, true); in getExcludedLogicalSlotIndex_fromPsimAndPort1ToPsimAndPort0_logicalSlot1()
435 Collection<SubscriptionInfo> activeSubscriptionInfoList = in getExcludedLogicalSlotIndex_fromPsimAndPort0ToDualPortsB_logicalSlot0() local
441 uiccSlotMappings, activeSubscriptionInfoList, removedSubInfo, true); in getExcludedLogicalSlotIndex_fromPsimAndPort0ToDualPortsB_logicalSlot0()
[all …]
/packages/apps/Settings/tests/spa_unit/src/com/android/settings/network/
DNetworkProviderCallsSmsControllerTest.kt45 activeSubscriptionInfoList = emptyList(), in <lambda>()
58 activeSubscriptionInfoList = listOf(SUB_INFO_1), in <lambda>()
71 activeSubscriptionInfoList = listOf(SUB_INFO_1, SUB_INFO_2), in <lambda>()
82 activeSubscriptionInfoList = listOf(SUB_INFO_1), in <lambda>()
93 activeSubscriptionInfoList = listOf(SUB_INFO_1, SUB_INFO_2), in <lambda>()
104 activeSubscriptionInfoList = listOf(SUB_INFO_1, SUB_INFO_2), in <lambda>()
115 activeSubscriptionInfoList = listOf(SUB_INFO_1, SUB_INFO_2), in <lambda>()
126 activeSubscriptionInfoList = listOf(SUB_INFO_1, SUB_INFO_2), in <lambda>()
DSubscriptionInfoListViewModelTest.kt49 on { activeSubscriptionInfoList } doAnswer { activeSubscriptionInfoList } in <lambda>()
63 private var activeSubscriptionInfoList: List<SubscriptionInfo>? = null in createViewModel() variable in com.android.settings.network.SubscriptionInfoListViewModelTest
67 activeSubscriptionInfoList = listOf(SUB_INFO_1, SUB_INFO_2) in createViewModel()
75 assertThat(listDeferred.await()).contains(activeSubscriptionInfoList) in createViewModel()
80 activeSubscriptionInfoList = listOf(SUB_INFO_1, SUB_INFO_2, SUB_INFO_3) in <lambda>()
95 activeSubscriptionInfoList = listOf(SUB_INFO_1, SUB_INFO_2, SUB_INFO_4) in onSubscriptionsChanged_flagOffHasNonTerrestrialNetwork_filterNonTerrestrialNetwork()
110 activeSubscriptionInfoList = listOf(SUB_INFO_1, SUB_INFO_2, SUB_INFO_4) in onSubscriptionsChanged_flagOnHasNonTerrestrialNetwork_filterNonTerrestrialNetwork()
/packages/services/AlternativeNetworkAccess/tests/src/com/android/ons/
DONSProfileSelectorTest.java228 List<SubscriptionInfo> activeSubscriptionInfoList = new ArrayList<SubscriptionInfo>(); in testStartProfileSelectionSuccess() local
237 activeSubscriptionInfoList.add(subscriptionInfo1); in testStartProfileSelectionSuccess()
238 activeSubscriptionInfoList.add(subscriptionInfo2); in testStartProfileSelectionSuccess()
269 doReturn(activeSubscriptionInfoList).when(mSubscriptionManager) in testStartProfileSelectionSuccess()
271 doReturn(activeSubscriptionInfoList).when(mSubscriptionManager) in testStartProfileSelectionSuccess()
391 List<SubscriptionInfo> activeSubscriptionInfoList = new ArrayList<SubscriptionInfo>(); in testStartProfileSelectionWithActivePrimarySimOnESim() local
399 activeSubscriptionInfoList.add(subscriptionInfo1); in testStartProfileSelectionWithActivePrimarySimOnESim()
400 activeSubscriptionInfoList.add(subscriptionInfo2); in testStartProfileSelectionWithActivePrimarySimOnESim()
440 doReturn(activeSubscriptionInfoList).when(mSubscriptionManager) in testStartProfileSelectionWithActivePrimarySimOnESim()
442 doReturn(activeSubscriptionInfoList).when(mSubscriptionManager) in testStartProfileSelectionWithActivePrimarySimOnESim()
[all …]
/packages/apps/Settings/src/com/android/settings/network/
DNetworkProviderCallsSmsController.kt100 activeSubscriptionInfoList: List<SubscriptionInfo>, in summaryFlow()
104 if (activeSubscriptionInfoList.isEmpty()) { in summaryFlow()
108 activeSubscriptionInfoList.singleOrNull()?.let { in summaryFlow()
113 return activeSubscriptionInfoList.joinToString { subInfo -> in summaryFlow()
119 subsSize = activeSubscriptionInfoList.size, in summaryFlow()
/packages/apps/Contacts/src/com/android/contacts/sdn/
DSdnRepository.kt66 return subscriptionManager?.activeSubscriptionInfoList?.filterNotNull()?.mapNotNull { in <lambda>()