Lines Matching refs:aid
408 public void onNfcTransactionEvent(byte[] aid, byte[] data, String seName) { in onNfcTransactionEvent() argument
409 byte[][] dataObj = {aid, data, seName.getBytes()}; in onNfcTransactionEvent()
2142 public void routeAids(String aid, int route, int aidInfo) { in routeAids() argument
2146 msg.obj = aid; in routeAids()
2151 public void unrouteAids(String aid) { in unrouteAids() argument
2152 sendMessage(MSG_UNROUTE_AID, aid); in unrouteAids()
2220 String aid = (String) msg.obj; in handleMessage() local
2221 mDeviceHost.routeAid(hexStringToBytes(aid), route, aidInfo); in handleMessage()
2226 String aid = (String) msg.obj; in handleMessage() local
2227 mDeviceHost.unrouteAid(hexStringToBytes(aid)); in handleMessage()
2520 private void sendOffHostTransactionEvent(byte[] aid, byte[] data, byte[] readerByteArray) { in sendOffHostTransactionEvent() argument
2528 boolean[] nfcAccess = mSEService.isNFCEventAllowed(reader, aid, in sendOffHostTransactionEvent()
2537 intent.putExtra(NfcAdapter.EXTRA_AID, aid); in sendOffHostTransactionEvent()
2540 StringBuilder aidString = new StringBuilder(aid.length); in sendOffHostTransactionEvent()
2541 for (byte b : aid) { in sendOffHostTransactionEvent()