Lines Matching refs:aid
380 public void onNfcTransactionEvent(byte[] aid, byte[] data, String seName) { in onNfcTransactionEvent() argument
381 byte[][] dataObj = {aid, data, seName.getBytes()}; in onNfcTransactionEvent()
1987 public void routeAids(String aid, int route, int aidInfo) { in routeAids() argument
1991 msg.obj = aid; in routeAids()
1996 public void unrouteAids(String aid) { in unrouteAids() argument
1997 sendMessage(MSG_UNROUTE_AID, aid); in unrouteAids()
2061 String aid = (String) msg.obj; in handleMessage() local
2062 mDeviceHost.routeAid(hexStringToBytes(aid), route, aidInfo); in handleMessage()
2067 String aid = (String) msg.obj; in handleMessage() local
2068 mDeviceHost.unrouteAid(hexStringToBytes(aid)); in handleMessage()
2348 private void sendOffHostTransactionEvent(byte[] aid, byte[] data, byte[] readerByteArray) { in sendOffHostTransactionEvent() argument
2356 boolean[] nfcAccess = mSEService.isNFCEventAllowed(reader, aid, in sendOffHostTransactionEvent()
2365 intent.putExtra(NfcAdapter.EXTRA_AID, aid); in sendOffHostTransactionEvent()
2368 StringBuilder aidString = new StringBuilder(aid.length); in sendOffHostTransactionEvent()
2369 for (byte b : aid) { in sendOffHostTransactionEvent()