Home
last modified time | relevance | path

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

/packages/apps/Nfc/tests/unit/src/com/android/nfc/cardemulation/
DRegisteredServicesCacheTest.java319 Assert.assertTrue(walletHolderSettings.aidGroups in testInitialize_filesExist()
321 Assert.assertTrue(walletHolderSettings.aidGroups.get(CardEmulation.CATEGORY_PAYMENT) in testInitialize_filesExist()
323 Assert.assertFalse(walletHolderSettings.aidGroups in testInitialize_filesExist()
331 Assert.assertTrue(nonPaymentSettings.aidGroups in testInitialize_filesExist()
333 Assert.assertTrue(nonPaymentSettings.aidGroups.get(CardEmulation.CATEGORY_OTHER) in testInitialize_filesExist()
968 .aidGroups.get(CardEmulation.CATEGORY_OTHER)); in testRegisterAidGroupForService_existingService_correctUid()
993 Assert.assertTrue(dynamicSettings.aidGroups.containsKey(CardEmulation.CATEGORY_OTHER)); in testRegisterAidGroupForService_existingService_correctUid()
995 dynamicSettings.aidGroups.get(CardEmulation.CATEGORY_OTHER).getAids()); in testRegisterAidGroupForService_existingService_correctUid()
1081 .aidGroups.containsKey(CardEmulation.CATEGORY_PAYMENT)); in testRemoveAidGroupForService_existingService_correctUid()
1106 Assert.assertFalse(dynamicSettings.aidGroups.containsKey(CardEmulation.CATEGORY_PAYMENT)); in testRemoveAidGroupForService_existingService_correctUid()
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
DRegisteredServicesCache.java120 public final HashMap<String, AidGroup> aidGroups = new HashMap<>(); field in RegisteredServicesCache.DynamicSettings
509 for (AidGroup group : dynamicSettings.aidGroups.values()) { in invalidateCache()
704 dynSettings.aidGroups.put(group.getCategory(), group); in readDynamicSettingsFromFile()
881 for (AidGroup group : service.getValue().aidGroups.values()) { in writeDynamicSettingsLocked()
1228 dynSettings.aidGroups.put(aidGroup.getCategory(), aidGroup); in registerAidGroupForService()
1236 dynSettings.aidGroups.remove(aidGroup.getCategory()); in registerAidGroupForService()
1316 AidGroup deletedGroup = dynSettings.aidGroups.remove(category); in removeAidGroupForService()
1322 dynSettings.aidGroups.put(category, deletedGroup); in removeAidGroupForService()