Home
last modified time | relevance | path

Searched refs:supportsAidPrefixRegistration (Results 1 – 11 of 11) sorted by relevance

/packages/modules/Nfc/framework/tests/src/android/nfc/cardemulation/
DCardemulationTest.java322 when(mINfcCardEmulation.supportsAidPrefixRegistration()) in testSupportsAidPrefixRegistration()
324 boolean result = mCardEmulation.supportsAidPrefixRegistration(); in testSupportsAidPrefixRegistration()
326 verify(mINfcCardEmulation).supportsAidPrefixRegistration(); in testSupportsAidPrefixRegistration()
/packages/modules/Nfc/framework/java/android/nfc/
DINfcCardEmulation.aidl48 boolean supportsAidPrefixRegistration(); in supportsAidPrefixRegistration() method
/packages/modules/Nfc/NfcNci/tests/unit/src/com/android/nfc/cardemulation/
DCardEmulationManagerTest.java1449 when(mRegisteredAidCache.supportsAidPrefixRegistration()).thenReturn(true); in testCardEmulationSupportsAidPrefixRegistration_doesSupport()
1454 .supportsAidPrefixRegistration()); in testCardEmulationSupportsAidPrefixRegistration_doesSupport()
1456 verify(mRegisteredAidCache).supportsAidPrefixRegistration(); in testCardEmulationSupportsAidPrefixRegistration_doesSupport()
1462 when(mRegisteredAidCache.supportsAidPrefixRegistration()).thenReturn(false); in testCardEmulationSupportsAidPrefixRegistration_doesNotSupport()
1467 .supportsAidPrefixRegistration()); in testCardEmulationSupportsAidPrefixRegistration_doesNotSupport()
1471 verify(mRegisteredAidCache).supportsAidPrefixRegistration(); in testCardEmulationSupportsAidPrefixRegistration_doesNotSupport()
2501 .supportsAidPrefixRegistration()).thenReturn(true); in testSupportsAidPrefixRegistration()
2502 boolean result = iNfcCardEmulation.supportsAidPrefixRegistration(); in testSupportsAidPrefixRegistration()
DRegisteredAidCacheTest.java151 assertTrue(mRegisteredAidCache.supportsAidPrefixRegistration()); in testConstructor_supportsPrefixAndSubset()
163 assertFalse(mRegisteredAidCache.supportsAidPrefixRegistration()); in testConstructor_doesNotSupportsPrefixAndSubset()
/packages/modules/Nfc/framework/java/android/nfc/cardemulation/
DCardEmulation.java776 public boolean supportsAidPrefixRegistration() { in supportsAidPrefixRegistration() method in CardEmulation
777 return callServiceReturn(() -> sService.supportsAidPrefixRegistration(), false); in supportsAidPrefixRegistration()
/packages/modules/Nfc/NfcNci/src/com/android/nfc/cardemulation/
DRegisteredAidCache.java264 public boolean supportsAidPrefixRegistration() { in supportsAidPrefixRegistration() method in RegisteredAidCache
775 if (aid.endsWith("*") && !supportsAidPrefixRegistration()) { in generateServiceMapLocked()
779 } else if (supportsAidPrefixRegistration() && prefixAids.size() > 0 in generateServiceMapLocked()
DCardEmulationManager.java1135 public boolean supportsAidPrefixRegistration() throws RemoteException { in supportsAidPrefixRegistration() method in CardEmulationManager.CardEmulationInterface
1136 return mAidCache.supportsAidPrefixRegistration(); in supportsAidPrefixRegistration()
/packages/modules/Nfc/NfcNci/testutils/src/com/android/nfc/emulator/
DNfcEmulatorDeviceSnippet.java301 return cardEmulation.supportsAidPrefixRegistration(); in isAidPrefixRegistrationSupported()
/packages/modules/Nfc/apex/hiddenapi/
Dhiddenapi-max-target-o.txt249 Landroid/nfc/INfcCardEmulation$Stub$Proxy;->supportsAidPrefixRegistration()Z
274 Landroid/nfc/INfcCardEmulation;->supportsAidPrefixRegistration()Z
/packages/modules/Nfc/framework/api/
Dcurrent.txt225 method public boolean supportsAidPrefixRegistration();
/packages/modules/Nfc/tests/cts/tests/src/android/nfc/cts/
DCardEmulationTest.java206 boolean result = instance.supportsAidPrefixRegistration(); in testSupportsAidPrefixRegistration()