Searched refs:aidEntry (Results 1 – 4 of 4) sorted by relevance
/packages/apps/Nfc/src/com/android/nfc/cardemulation/ |
D | AidRoutingManager.java | 128 for(Map.Entry<String, AidEntry> aidEntry : routeCache.entrySet()) { in calculateAidRouteSize() 129 String aid = aidEntry.getKey(); in calculateAidRouteSize() 142 for (Map.Entry<String, Integer> aidEntry : mRouteForAid.entrySet()) { in clearNfcRoutingTableLocked() 143 String aid = aidEntry.getKey(); in clearNfcRoutingTableLocked() 206 Map.Entry<String, Integer> aidEntry, in isAidEntryUpdated() argument 208 if(!Objects.equals(currRouteForAid.get(aidEntry.getKey()), aidEntry.getValue()) || in isAidEntryUpdated() 210 mPowerForAid.get(aidEntry.getKey()), in isAidEntryUpdated() 211 prevPowerForAid.get(aidEntry.getKey()))) { in isAidEntryUpdated() 223 for (Map.Entry<String, Integer> aidEntry : prevRouteForAid.entrySet()) { in checkUnrouteAid() 224 if((aidEntry.getValue() != mDefaultRoute) && in checkUnrouteAid() [all …]
|
D | RegisteredAidCache.java | 1061 for (Map.Entry<String, AidResolveInfo> aidEntry: in updateRoutingLocked() 1063 String aid = aidEntry.getKey(); in updateRoutingLocked() 1064 AidResolveInfo resolveInfo = aidEntry.getValue(); in updateRoutingLocked()
|
/packages/apps/Nfc/tests/unit/src/com/android/nfc/cardemulation/ |
D | AidRoutingManagerTest.java | 329 AidEntry aidEntry = manager.new AidEntry(); in testConfigureRoutingTestCase3_DoNothing() local 330 aidEntry.isOnHost = false; in testConfigureRoutingTestCase3_DoNothing() 331 aidEntry.offHostSE = "eSE2"; in testConfigureRoutingTestCase3_DoNothing() 332 aidEntry.power = 1; in testConfigureRoutingTestCase3_DoNothing() 333 aidEntry.aidInfo = 2; in testConfigureRoutingTestCase3_DoNothing() 334 aidMap.put("firstAidEntry*", aidEntry); in testConfigureRoutingTestCase3_DoNothing() 381 AidEntry aidEntry = manager.new AidEntry(); in testConfigureRoutingTestCase4_CommitsCache() local 382 aidEntry.isOnHost = false; in testConfigureRoutingTestCase4_CommitsCache() 383 aidEntry.offHostSE = "eSE2"; in testConfigureRoutingTestCase4_CommitsCache() 384 aidEntry.power = 1; in testConfigureRoutingTestCase4_CommitsCache() [all …]
|
/packages/apps/Nfc/tests/unit/src/com/android/nfc/ |
D | AidRoutingManagerTest.java | 88 AidRoutingManager.AidEntry aidEntry = mAidRoutingManager.new AidEntry(); in testCalculateAidRouteSize() local 89 aidEntryMap.put("test*", aidEntry); in testCalculateAidRouteSize()
|