HomeSort by relevance Sort by last modified time
    Searched full:transceive (Results 1 - 25 of 46) sorted by null

1 2

  /frameworks/base/core/java/android/nfc/tech/
BasicTagTechnology.java 29 * A base class for tag technologies that are built on top of transceive().
127 /** Internal transceive */
128 /*package*/ byte[] transceive(byte[] data, boolean raw) throws IOException { method in class:BasicTagTechnology
132 TransceiveResult result = mTag.getTagService().transceive(mTag.getServiceHandle(),
135 throw new IOException("transceive failed");
144 throw new IOException("transceive failed");
IsoDep.java 30 * <p>The primary ISO-DEP I/O operation is {@link #transceive}. Applications must
31 * implement their own protocol stack on top of {@link #transceive}.
80 * Set the timeout of {@link #transceive} in milliseconds.
81 * <p>The timeout only applies to ISO-DEP {@link #transceive}, and is
144 * will be automatically fragmented and defragmented by {@link #transceive} if
158 public byte[] transceive(byte[] data) throws IOException { method in class:IsoDep
159 return transceive(data, true);
NfcA.java 29 * <p>The primary NFC-A I/O operation is {@link #transceive}. Applications must
30 * implement their own protocol stack on top of {@link #transceive}.
112 public byte[] transceive(byte[] data) throws IOException { method in class:NfcA
113 return transceive(data, true);
NfcB.java 29 * <p>The primary NFC-B I/O operation is {@link #transceive}. Applications must
30 * implement their own protocol stack on top of {@link #transceive}.
111 public byte[] transceive(byte[] data) throws IOException { method in class:NfcB
112 return transceive(data, true);
NfcF.java 29 * <p>The primary NFC-F I/O operation is {@link #transceive}. Applications must
30 * implement their own protocol stack on top of {@link #transceive}.
111 public byte[] transceive(byte[] data) throws IOException { method in class:NfcF
112 return transceive(data, true);
NfcV.java 29 * <p>The primary NFC-V I/O operation is {@link #transceive}. Applications must
30 * implement their own protocol stack on top of {@link #transceive}.
111 public byte[] transceive(byte[] data) throws IOException { method in class:NfcV
112 return transceive(data, true);
MifareUltralight.java 154 return transceive(cmd, false);
183 transceive(cmd, false); method
190 * and calling {@link NfcA#transceive}. Note that all MIFARE Classic
199 * @see NfcA#transceive
201 public byte[] transceive(byte[] data) throws IOException { method in class:MifareUltralight
202 return transceive(data, true);
MifareClassic.java 390 if (transceive(cmd, false) != null) {
420 return transceive(cmd, false);
449 transceive(cmd, false); method
477 transceive(cmd.array(), false);
505 transceive(cmd.array(), false);
527 transceive(cmd, false); method
549 transceive(cmd, false); method
556 * and calling {@link NfcA#transceive}. Note that all MIFARE Classic
565 * @see NfcA#transceive
567 public byte[] transceive(byte[] data) throws IOException method in class:MifareClassic
    [all...]
  /frameworks/base/core/java/com/android/internal/nfc/
P2pTarget.java 129 public byte[] transceive(byte[] data) throws IOException, NfcException { method in class:P2pTarget
133 // Perform transceive
135 byte[] response = mService.transceive(mHandle, data);
137 throw new IOException("Transceive failed");
141 Log.e(TAG, "RemoteException in transceive(): ", e);
  /frameworks/base/core/java/android/nfc/
INfcAdapterExtras.aidl 28 Bundle transceive(in byte[] data_in);
IP2pTarget.aidl 28 byte[] transceive(int nativeHandle, in byte[] data);
INfcTag.aidl 34 TransceiveResult transceive(int nativeHandle, in byte[] data, boolean raw);
TransceiveResult.java 23 * Class used to pipe transceive result from the NFC service.
  /external/libnfc-nxp/src/
phHal4Nfc_Internal.h 56 #define PH_HAL4NFC_TRANSCEIVE_TIMEOUT 30000 /**<Transceive operation
87 /**Context info for HAL4 transceive*/
89 /*Upper layer's Transceive callback*/
99 /*Data structure to provide transceive info to Hci*/
104 remaining bytes can be sent during the next transceive*/
219 /*Transceive context info*/
246 /*Callback completion routine for Transceive*/
306 /**Handle transceive timeout*/
phHal4Nfc_Reader.c 40 for Transceive*/
242 /*For Ordering Transceive Info for ISO_3A type tags*/
341 /*For Ordering Transceive Info for Mifare tags*/
481 /*Process transceive based on Remote device type*/
519 PHDBG_INFO("NfcIP1 Transceive");
593 /**Create a timer to keep track of transceive timeout*/
597 PHDBG_INFO("HAL4: Transaction Timer Create for transceive");
684 /**Create a timer to keep track of transceive timeout*/
688 PHDBG_INFO("HAL4: Transaction Timer Create for transceive");
713 /**Start timer to keep track of transceive timeout*
    [all...]
phLibNfc_initiator.c 93 /*Remote device Transceive response callback*/
    [all...]
phFriNfc_LlcpMacNfcip.c 301 /*set the completion routines for the LLCP Transceive function*/
389 /*set the completion routines for the LLCP Transceive function*/
phFriNfc_OvrHal.h 112 #define PH_FRINFC_OVRHAL_TRX (8) /**< \brief Transceive */
276 * \brief Transceive Data to/from a Remote Device
301 * \note Please refer to HAL Transceive for a detailed description of the
phHciNfc_Sequence.c 343 /* Intermediate Transceive State */
374 /* Intermediate Transceive State */
764 /* Notify the Transceive failure to the upper layer */
768 /* Rollback the FSM as the Transceive Failed */
    [all...]
phLibNfc.c 178 /* Allocate the Memory for the Transceive info */
268 /* Allocate the Memory for the Transceive info */
404 /* Allocate the Memory for the Transceive info */
    [all...]
phLibNfc_Internal.h 99 /*Transceive Call back & it's context*/
phHal4Nfc.h 103 /**Send length used for Transceive*/
206 * a Transceive operation on a tag or when the Device acts as an Initiator in a
630 * \param[in,out] psTransceiveInfo Information required by transceive is
645 * \retval NFCSTATUS_PENDING Transceive initiated.pTrcvCallback
668 * call to transceive.
    [all...]
  /frameworks/base/nfc-extras/java/com/android/nfc_extras/
NfcExecutionEnvironment.java 169 public byte[] transceive(byte[] in) throws IOException { method in class:NfcExecutionEnvironment
172 b = mExtras.getService().transceive(in);
  /packages/apps/Nfc/jni/
com_android_nfc_NativeP2pDevice.cpp 220 * We do not in P2P path because presence check is not safe while transceive may be
289 /* Transceive*/
290 TRACE("Transceive data to target (handle = 0x%x)", handle);
com_android_nfc_NativeNfcSecureElement.cpp 606 /* Prepare transceive info structure */
644 LOGE("TRANSCEIVE semaphore error");
650 LOGE("TRANSCEIVE error");

Completed in 2215 milliseconds

1 2