Searched refs:mAidMatchingSupport (Results 1 – 3 of 3) sorted by relevance
69 final int mAidMatchingSupport; field in AidRoutingManager106 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 …]
39 final int mAidMatchingSupport; field in RoutingOptionManager85 mAidMatchingSupport = doGetAidMatchingMode(); in RoutingOptionManager()86 if (DBG) Log.d(TAG, "mAidMatchingSupport=0x" + Integer.toHexString(mAidMatchingSupport)); in RoutingOptionManager()137 return mAidMatchingSupport; in getAidMatchingSupport()
118 Assert.assertEquals(AID_MATCHING_MODE, manager.mAidMatchingSupport); in testConstructor()