/frameworks/base/core/java/android/nfc/tech/ |
H A D | 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}. 101 * that can be sent with {@link #transceive}. 114 public byte[] transceive(byte[] data) throws IOException { method in class:NfcB 115 return transceive(data, true); 119 * Return the maximum number of bytes that can be sent with {@link #transceive}. 120 * @return the maximum number of bytes that can be sent with {@link #transceive}.
|
H A D | 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}. 101 * that can be sent with {@link #transceive}. 114 public byte[] transceive(byte[] data) throws IOException { method in class:NfcV 115 return transceive(data, true); 120 * Return the maximum number of bytes that can be sent with {@link #transceive}. 121 * @return the maximum number of bytes that can be sent with {@link #transceive}.
|
H A D | MifareUltralight.java | 164 return transceive(cmd, false); 193 transceive(cmd, false); 200 * and calling {@link NfcA#transceive}. Note that all MIFARE Classic 204 * that can be sent with {@link #transceive}. 212 * @see NfcA#transceive 214 public byte[] transceive(byte[] data) throws IOException { method in class:MifareUltralight 215 return transceive(data, true); 219 * Return the maximum number of bytes that can be sent with {@link #transceive}. 220 * @return the maximum number of bytes that can be sent with {@link #transceive}. 227 * Set the {@link #transceive} timeou [all...] |
H A D | MifareClassic.java | 395 if (transceive(cmd, false) != null) { 425 return transceive(cmd, false); 454 transceive(cmd, false); 482 transceive(cmd.array(), false); 510 transceive(cmd.array(), false); 532 transceive(cmd, false); 554 transceive(cmd, false); 561 * and calling {@link NfcA#transceive}. Note that all MIFARE Classic 565 * that can be sent with {@link #transceive}. 573 * @see NfcA#transceive 575 public byte[] transceive(byte[] data) throws IOException { method in class:MifareClassic [all...] |
H A D | IsoDep.java | 31 * <p>The primary ISO-DEP I/O operation is {@link #transceive}. Applications must 32 * implement their own protocol stack on top of {@link #transceive}. 81 * Set the timeout of {@link #transceive} in milliseconds. 82 * <p>The timeout only applies to ISO-DEP {@link #transceive}, and is 104 * Get the current timeout for {@link #transceive} in milliseconds. 154 * will be automatically fragmented and defragmented by {@link #transceive} if 158 * that can be sent with {@link #transceive}. 171 public byte[] transceive(byte[] data) throws IOException { method in class:IsoDep 172 return transceive(data, true); 176 * Return the maximum number of bytes that can be sent with {@link #transceive} [all...] |
H A D | NfcA.java | 31 * <p>The primary NFC-A I/O operation is {@link #transceive}. Applications must 32 * implement their own protocol stack on top of {@link #transceive}. 106 * that can be sent with {@link #transceive}. 119 public byte[] transceive(byte[] data) throws IOException { method in class:NfcA 120 return transceive(data, true); 124 * Return the maximum number of bytes that can be sent with {@link #transceive}. 125 * @return the maximum number of bytes that can be sent with {@link #transceive}. 132 * Set the {@link #transceive} timeout in milliseconds. 134 * <p>The timeout only applies to {@link #transceive} on this object, 157 * Get the current {@link #transceive} timeou [all...] |
H A D | NfcF.java | 31 * <p>The primary NFC-F I/O operation is {@link #transceive}. Applications must 32 * implement their own protocol stack on top of {@link #transceive}. 105 * that can be sent with {@link #transceive}. 118 public byte[] transceive(byte[] data) throws IOException { method in class:NfcF 119 return transceive(data, true); 123 * Return the maximum number of bytes that can be sent with {@link #transceive}. 124 * @return the maximum number of bytes that can be sent with {@link #transceive}. 131 * Set the {@link #transceive} timeout in milliseconds. 133 * <p>The timeout only applies to {@link #transceive} on this object, 156 * Get the current {@link #transceive} timeou [all...] |
H A D | BasicTagTechnology.java | 28 * A base class for tag technologies that are built on top of transceive(). 141 /** Internal transceive */ 142 byte[] transceive(byte[] data, boolean raw) throws IOException { method in class:BasicTagTechnology 146 TransceiveResult result = mTag.getTagService().transceive(mTag.getServiceHandle(), 149 throw new IOException("transceive failed");
|
/frameworks/base/core/java/android/nfc/ |
H A D | INfcAdapterExtras.aidl | 28 Bundle transceive(in String pkg, in byte[] data_in);
|
H A D | INfcTag.aidl | 34 TransceiveResult transceive(int nativeHandle, in byte[] data, boolean raw);
|
/frameworks/base/nfc-extras/java/com/android/nfc_extras/ |
H A D | NfcExecutionEnvironment.java | 201 public byte[] transceive(byte[] in) throws IOException { method in class:NfcExecutionEnvironment 204 b = mExtras.getService().transceive(mExtras.mPackageName, in);
|
/frameworks/base/nfc-extras/tests/src/com/android/nfc_extras/tests/ |
H A D | BasicNfcEeTest.java | 60 byte[] out = mEe.transceive(SELECT_CARD_MANAGER_COMMAND); 79 byte[] out = mEe.transceive(SELECT_CARD_MANAGER_COMMAND);
|