Home
last modified time | relevance | path

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

/packages/apps/Nfc/src/com/android/nfc/cardemulation/
DAidRoutingManager.java69 final int mAidMatchingSupport; field in AidRoutingManager
106 mAidMatchingSupport = mRoutingOptionManager.getAidMatchingSupport(); in AidRoutingManager()
108 Log.d(TAG, "mAidMatchingSupport=0x" + Integer.toHexString(mAidMatchingSupport)); in AidRoutingManager()
115 return mAidMatchingSupport == AID_MATCHING_EXACT_OR_PREFIX || in supportsAidPrefixRouting()
116 mAidMatchingSupport == AID_MATCHING_PREFIX_ONLY || in supportsAidPrefixRouting()
117 mAidMatchingSupport == AID_MATCHING_EXACT_OR_SUBSET_OR_PREFIX; in supportsAidPrefixRouting()
121 return mAidMatchingSupport == AID_MATCHING_EXACT_OR_SUBSET_OR_PREFIX; in supportsAidSubsetRouting()
145 if (mAidMatchingSupport == AID_MATCHING_EXACT_ONLY) { in clearNfcRoutingTableLocked()
148 } else if (mAidMatchingSupport == AID_MATCHING_PREFIX_ONLY) { in clearNfcRoutingTableLocked()
152 } else if (mAidMatchingSupport == AID_MATCHING_EXACT_OR_PREFIX || in clearNfcRoutingTableLocked()
[all …]
DRoutingOptionManager.java39 final int mAidMatchingSupport; field in RoutingOptionManager
85 mAidMatchingSupport = doGetAidMatchingMode(); in RoutingOptionManager()
86 if (DBG) Log.d(TAG, "mAidMatchingSupport=0x" + Integer.toHexString(mAidMatchingSupport)); in RoutingOptionManager()
137 return mAidMatchingSupport; in getAidMatchingSupport()
/packages/apps/Nfc/tests/unit/src/com/android/nfc/cardemulation/
DRoutingOptionManagerTest.java118 Assert.assertEquals(AID_MATCHING_MODE, manager.mAidMatchingSupport); in testConstructor()