HomeSort by relevance Sort by last modified time
    Searched refs:aid (Results 26 - 50 of 302) sorted by null

12 3 4 5 6 7 8 91011>>

  /development/samples/browseable/CardEmulation/src/com.example.android.cardemulation/
CardService.java 43 // AID for our loyalty card service.
45 // ISO-DEP command HEADER for selecting an AID.
48 // "OK" status word sent in response to SELECT AID command (0x9000)
56 * cause for the disconnection (either a lost link, or another AID being selected by the
87 // If the APDU matches the SELECT AID command for this service,
101 * Build APDU for SELECT AID command. This command indicates which service a reader is
104 * @param aid Application ID (AID) to select
105 * @return APDU for SELECT AID command
107 public static byte[] BuildSelectApdu(String aid) {
    [all...]
  /external/libese/apps/boot/card/src/com/android/verifiedboot/storage/
OsBackupInterface.java 19 import javacard.framework.AID;
56 * @param aid caller's AID
59 Shareable getShareableInterfaceObject(AID aid, byte arg);
  /external/syslinux/com32/hdt/
hdt-ata.h 55 struct ata_identify_device aid; /* IDENTIFY xxx DEVICE data */ member in struct:ata_driveinfo
  /system/nfc/src/nfa/include/
nfa_ce_api.h 161 ** Description Register listening callback for the specified ISODEP AID
166 ** If no AID is specified (aid_len=0), then p_conn_cback will
179 extern tNFA_STATUS NFA_CeRegisterAidOnDH(uint8_t aid[NFC_MAX_AID_LEN],
187 ** Description Deregister listening callback for ISODEP AID
217 ** reader/writer selects an AID that is not routed to the UICC
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/apdu/
ApduSenderTest.java 106 String aid = "B2C3D4"; local
107 ApduSender sender = new ApduSender(mMockCi, aid, false /* supportExtendedApdu */);
119 verify(mMockCi).iccOpenLogicalChannel(eq(aid), anyInt(), any());
125 String aid = "B2C3D4"; local
126 ApduSender sender = new ApduSender(mMockCi, aid, false /* supportExtendedApdu */);
138 verify(mMockCi).iccOpenLogicalChannel(eq(aid), anyInt(), any());
143 String aid = "B2C3D4"; local
144 ApduSender sender = new ApduSender(mMockCi, aid, false /* supportExtendedApdu */);
161 String aid = "B2C3D4"; local
162 ApduSender sender = new ApduSender(mMockCi, aid, false /* supportExtendedApdu */)
190 String aid = "B2C3D4"; local
213 String aid = "B2C3D4"; local
248 String aid = "B2C3D4"; local
273 String aid = "B2C3D4"; local
292 String aid = "B2C3D4"; local
324 String aid = "B2C3D4"; local
    [all...]
  /developers/build/prebuilts/gradle/CardReader/Application/tests/src/com/example/android/cardreader/tests/
SampleTests.java 76 * Test building SELECT APDU from AID string.
79 final String aid = "1234"; local
82 final byte[] result = LoyaltyCardReader.BuildSelectApdu(aid);
  /developers/samples/android/connectivity/nfc/CardReader/Application/tests/src/com/example/android/cardreader/tests/
SampleTests.java 76 * Test building SELECT APDU from AID string.
79 final String aid = "1234"; local
82 final byte[] result = LoyaltyCardReader.BuildSelectApdu(aid);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
RuimFileHandler.java 33 public RuimFileHandler(UiccCardApplication app, String aid, CommandsInterface ci) {
34 super(app, aid, ci);
SIMFileHandler.java 33 public SIMFileHandler(UiccCardApplication app, String aid, CommandsInterface ci) {
34 super(app, aid, ci);
UsimFileHandler.java 31 public UsimFileHandler(UiccCardApplication app, String aid, CommandsInterface ci) {
32 super(app, aid, ci);
  /hardware/nxp/secure_element/1.0/
SecureElement.h 57 Return<void> openLogicalChannel(const hidl_vec<uint8_t>& aid, uint8_t p2,
59 Return<void> openBasicChannel(const hidl_vec<uint8_t>& aid, uint8_t p2,
SecureElement.cpp 117 Return<void> SecureElement::openLogicalChannel(const hidl_vec<uint8_t>& aid,
188 cmdApdu.len = (int32_t)(5 + aid.size());
196 cmdApdu.p_data[xx++] = aid.size(); // Lc
197 memcpy(&cmdApdu.p_data[xx], aid.data(), aid.size());
216 /*AID provided doesn't match any applet on the secure element*/
242 Return<void> SecureElement::openBasicChannel(const hidl_vec<uint8_t>& aid,
264 cmdApdu.len = (int32_t)(5 + aid.size());
272 cmdApdu.p_data[xx++] = aid.size(); // Lc
273 memcpy(&cmdApdu.p_data[xx], aid.data(), aid.size())
    [all...]
  /packages/apps/Nfc/nci/jni/
HciEventManager.cpp 49 void HciEventManager::notifyTransactionListenersOfAid(std::vector<uint8_t> aid,
52 if (aid.empty()) {
60 ScopedLocalRef<jobject> aidJavaArray(e, e->NewByteArray(aid.size()));
62 e->SetByteArrayRegion((jbyteArray)aidJavaArray.get(), 0, aid.size(),
63 (jbyte*)&aid[0]);
158 // Check the event and check if it contains the AID
163 std::vector<uint8_t> aid(event_buff.begin() + 2,
175 getInstance().notifyTransactionListenersOfAid(aid, data, evtSrc);
RoutingManager.h 38 bool addAidRouting(const uint8_t* aid, uint8_t aidLen, int route,
40 bool removeAidRouting(const uint8_t* aid, uint8_t aidLen);
  /developers/build/prebuilts/gradle/CardReader/Application/src/main/java/com/example/android/cardreader/
LoyaltyCardReader.java 35 // AID for our loyalty card service.
37 // ISO-DEP command HEADER for selecting an AID.
40 // "OK" status word sent in response to SELECT AID command (0x9000)
75 // Build SELECT AID command for our loyalty card service.
77 Log.i(TAG, "Requesting remote AID: " + SAMPLE_LOYALTY_CARD_AID);
82 // If AID is successfully selected, 0x9000 is returned as the status word (last 2
102 * Build APDU for SELECT AID command. This command indicates which service a reader is
105 * @param aid Application ID (AID) to select
106 * @return APDU for SELECT AID comman
    [all...]
  /developers/samples/android/connectivity/nfc/CardReader/Application/src/main/java/com/example/android/cardreader/
LoyaltyCardReader.java 35 // AID for our loyalty card service.
37 // ISO-DEP command HEADER for selecting an AID.
40 // "OK" status word sent in response to SELECT AID command (0x9000)
75 // Build SELECT AID command for our loyalty card service.
77 Log.i(TAG, "Requesting remote AID: " + SAMPLE_LOYALTY_CARD_AID);
82 // If AID is successfully selected, 0x9000 is returned as the status word (last 2
102 * Build APDU for SELECT AID command. This command indicates which service a reader is
105 * @param aid Application ID (AID) to select
106 * @return APDU for SELECT AID comman
    [all...]
  /development/samples/browseable/CardReader/src/com.example.android.cardreader/
LoyaltyCardReader.java 35 // AID for our loyalty card service.
37 // ISO-DEP command HEADER for selecting an AID.
40 // "OK" status word sent in response to SELECT AID command (0x9000)
75 // Build SELECT AID command for our loyalty card service.
77 Log.i(TAG, "Requesting remote AID: " + SAMPLE_LOYALTY_CARD_AID);
82 // If AID is successfully selected, 0x9000 is returned as the status word (last 2
102 * Build APDU for SELECT AID command. This command indicates which service a reader is
105 * @param aid Application ID (AID) to select
106 * @return APDU for SELECT AID comman
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/
DeviceHost.java 51 public void onNfcTransactionEvent(byte[] aid, byte[] data, String seName);
189 public boolean routeAid(byte[] aid, int route, int aidInfo);
191 public boolean unrouteAid(byte[] aid);
  /external/ltp/lib/newlib_tests/
test15.c 64 static void *worker_load_store(void *aid)
66 int id = (intptr_t)aid, i;
  /frameworks/base/core/java/android/nfc/
INfcCardEmulation.aidl 30 boolean isDefaultServiceForAid(int userHandle, in ComponentName service, String aid);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/apdu/
OpenLogicalChannelInvocation.java 29 * Invokes {@link CommandsInterface#iccOpenLogicalChannel(String, int, Message)}. This takes AID
47 protected void sendRequestMessage(String aid, Message msg) {
48 mCi.iccOpenLogicalChannel(aid, 0, msg);
  /external/valgrind/coregrind/
m_mallocfree.c 58 static void cc_analyse_alloc_arena ( ArenaId aid ); /* fwds */
286 void ensure_mm_init ( ArenaId aid );
562 void arena_init ( ArenaId aid, const HChar* name, SizeT rz_szB,
566 Arena* a = arenaId_to_ArenaP(aid);
575 if (VG_AR_CLIENT == aid) {
599 a->clientmem = ( VG_AR_CLIENT == aid ? True : False );
674 void ensure_mm_init ( ArenaId aid )
691 if (VG_AR_CLIENT == aid) {
836 ArenaId aid; local
841 for (aid = 0; aid < VG_N_ARENAS; aid++)
    [all...]
  /cts/hostsidetests/incident/src/com/android/server/cts/
AlarmManagerIncidentTest.java 67 for (int aid : forceAppStandbyTracker.getPowerSaveWhitelistAppIdsList()) {
68 assertTrue(0 <= aid);
70 for (int aid : forceAppStandbyTracker.getTempPowerSaveWhitelistAppIdsList()) {
71 assertTrue(0 <= aid);
90 for (int aid : dump.getDeviceIdleUserWhitelistAppIdsList()) {
91 assertTrue(0 <= aid);
  /hardware/interfaces/secure_element/1.0/vts/functional/
VtsHalSecureElementV1_0TargetTest.cpp 117 std::vector<uint8_t> aid = ANDROID_TEST_AID; local
121 aid, 0x00,
157 std::vector<uint8_t> aid = ANDROID_TEST_AID; local
160 se_->openBasicChannel(aid, 0x00,
204 std::vector<uint8_t> aid = ANDROID_TEST_AID; local
208 aid, 0x00,
  /packages/apps/SecureElement/src/com/android/se/security/
AccessControlEnforcer.java 285 public ChannelAccess setUpChannelAccess(byte[] aid, String packageName, boolean checkRefreshTag)
295 channelAccess = internal_setUpChannelAccess(aid, packageName,
312 private synchronized ChannelAccess internal_setUpChannelAccess(byte[] aid,
329 return getAccessRule(aid, appCerts);
337 /** Fetches the Access Rules for the given application and AID pair */
339 byte[] aid, Certificate[] appCerts)
345 channelAccess = mAccessRuleCache.findAccessRule(aid, appCerts);
384 public synchronized boolean[] isNfcEventAllowed(byte[] aid,
387 return internal_isNfcEventAllowed(aid, packageNames, checkRefreshTag);
400 private synchronized boolean[] internal_isNfcEventAllowed(byte[] aid,
    [all...]

Completed in 1006 milliseconds

12 3 4 5 6 7 8 91011>>