Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/unit/src/com/android/settings/network/helper/
DQuerySimSlotIndexTest.java68 List<Integer> result = SelectableSubscriptions.atomicToList(mActiveSimSlotIndex.get()); in allSimSlotIndexCall_nullInput_getNoneNullEmptyList()
80 List<Integer> result = SelectableSubscriptions.atomicToList(mActiveSimSlotIndex.get()); in allSimSlotIndexCall_oneSimAndActivePsim_getList()
93 List<Integer> result = SelectableSubscriptions.atomicToList(mActiveSimSlotIndex.get()); in allSimSlotIndexCall_oneSimAndActiveEsim_getList()
106 List<Integer> result = SelectableSubscriptions.atomicToList(mActiveSimSlotIndex.get()); in allSimSlotIndexCall_twoSimsAndActivePsimActiveEsim_getList()
120 List<Integer> result = SelectableSubscriptions.atomicToList(mActiveSimSlotIndex.get()); in allSimSlotIndexCall_twoSimsAndtwoActiveEsims_getList()
134 List<Integer> result = SelectableSubscriptions.atomicToList(mActiveSimSlotIndex.get()); in allSimSlotIndexCall_twoSimsAndActivePsimInactiveEsim_getList()
148 List<Integer> result = SelectableSubscriptions.atomicToList(mActiveSimSlotIndex.get()); in allSimSlotIndexCall_twoSimsAndActiveEsimInactivePsim_getList()
162 List<Integer> result = SelectableSubscriptions.atomicToList(mActiveSimSlotIndex.get()); in activeSimSlotIndexCall_nullInput_getNoneNullEmptyList()
174 List<Integer> result = SelectableSubscriptions.atomicToList(mActiveSimSlotIndex.get()); in activeSimSlotIndexCall_oneSimAndActivePsim_getList()
187 List<Integer> result = SelectableSubscriptions.atomicToList(mActiveSimSlotIndex.get()); in activeSimSlotIndexCall_oneSimAndActiveEsim_getList()
[all …]
DSelectableSubscriptionsTest.java38 List<Integer> result = SelectableSubscriptions.atomicToList(null); in atomicToList_nullInput_getNoneNullEmptyList()
45 List<Integer> result = SelectableSubscriptions.atomicToList(new AtomicIntegerArray(0)); in atomicToList_zeroLengthInput_getEmptyList()
57 List<Integer> result = SelectableSubscriptions.atomicToList(array); in atomicToList_subIdInArray_getList()
/packages/apps/Settings/src/com/android/settings/network/helper/
DSelectableSubscriptions.java113 List<Integer> activeSimSlotIndexList = atomicToList(activeSimSlotIndex.get()); in call()
149 protected static List<Integer> atomicToList(AtomicIntegerArray atomicIntArray) { in atomicToList() method in SelectableSubscriptions