HomeSort by relevance Sort by last modified time
    Searched full:apdu (Results 1 - 19 of 19) sorted by null

  /external/bluetooth/bluez/sap/
sap-dummy.c 101 char apdu[] = "APDU response!"; local
116 (uint8_t*)&apdu, sizeof(apdu));
server.c 732 int sap_transfer_apdu_rsp(void *sap_device, uint8_t result, uint8_t *apdu,
749 if (result == SAP_RESULT_OK && (!apdu || (apdu && length == 0x00)))
757 /* Add APDU response. */
769 memcpy(param->val, apdu, length);
    [all...]
  /frameworks/base/nfc-extras/java/com/android/nfc_extras/
NfcExecutionEnvironment.java 56 * Broadcast action: A filtered APDU was received.
58 * <p>This happens when an APDU of interest was matched by the Nfc adapter,
73 * <p>Contains the bytes of the received APDU.
  /external/bluetooth/bluez/test/
test-sap-server 48 print "[Test] Connect - TX APDU - Disconnect by client \n"
sap-client 437 def __init__(self, APDU = None, T = False):
439 if APDU is not None:
441 self.addParam(SAPParam_CommandAPDU(APDU))
443 self.addParam(SAPParam_CommandAPDU7816(APDU))
843 def proc_transferAPDU(self, apdu = "Sample APDU command"):
845 self.__sendMsg(SAPMessage_TRANSFER_APDU_REQ(apdu))
  /packages/apps/Nfc/src/com/android/nfc/
DeviceHost.java 52 public void onSeApduReceived(byte[] apdu);
NfcService.java 290 public void onSeApduReceived(byte[] apdu) {
291 sendMessage(NfcService.MSG_SE_APDU_RECEIVED, apdu);
    [all...]
  /frameworks/base/core/java/android/nfc/tech/
IsoDep.java 185 * 255 payload bytes, which results in a maximum APDU length of 261 bytes.
192 * in the future though. Use this method to check for extended length APDU
  /packages/apps/Nfc/src/com/android/nfc/nxp/
NativeNfcManager.java 362 private void notifySeApduReceived(byte[] apdu) {
363 mListener.onSeApduReceived(apdu);