Home
last modified time | relevance | path

Searched refs:AID_MATCHING_EXACT_ONLY (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Nfc/src/com/android/nfc/cardemulation/
DAidRoutingManager.java46 static final int AID_MATCHING_EXACT_ONLY = 0x00; field in AidRoutingManager
145 if (mAidMatchingSupport == AID_MATCHING_EXACT_ONLY) { in clearNfcRoutingTableLocked()
158 if (mAidMatchingSupport == AID_MATCHING_EXACT_ONLY) { in clearNfcRoutingTableLocked()
369 if (mAidMatchingSupport == AID_MATCHING_EXACT_ONLY) { in configureRouting()
383 if (mAidMatchingSupport == AID_MATCHING_EXACT_ONLY) { in configureRouting()
/packages/apps/Nfc/tests/unit/src/com/android/nfc/cardemulation/
DAidRoutingManagerTest.java19 import static com.android.nfc.cardemulation.AidRoutingManager.AID_MATCHING_EXACT_ONLY;
137 when(mRoutingOptionManager.getAidMatchingSupport()).thenReturn(AID_MATCHING_EXACT_ONLY); in testSupportsAidPrefixRouting_ReturnsFalse()
319 when(mRoutingOptionManager.getAidMatchingSupport()).thenReturn(AID_MATCHING_EXACT_ONLY); in testConfigureRoutingTestCase3_DoNothing()
371 when(mRoutingOptionManager.getAidMatchingSupport()).thenReturn(AID_MATCHING_EXACT_ONLY); in testConfigureRoutingTestCase4_CommitsCache()
/packages/apps/Nfc/nci/jni/
DRoutingManager.h79 static const int AID_MATCHING_EXACT_ONLY = 0x00; variable
DRoutingManager.cpp91 NfcConfig::getUnsigned(NAME_AID_MATCHING_MODE, AID_MATCHING_EXACT_ONLY); in RoutingManager()