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

1 2

  /external/libese/libese-cpp/include/esecpp/
EseInterface.h 46 virtual int transceive(const std::vector<uint8_t>& tx, std::vector<uint8_t>& rx) { function in class:android::EseInterface
52 // TODO: overload transceive for ese_transceive_sg
  /external/libese/third_party/NXPNFC_P61_JCOP_Kit/include/
IChannel.h 46 ** Function: transceive
59 bool (*transceive) (UINT8* xmitBuffer, INT32 xmitBufferSize, UINT8* recvBuffer, member in struct:IChannel
  /external/libese/esed/
utils.h 74 * Transceive a command with the eSE and perform common error checking. When the
79 T transceive(::android::esed::EseInterface& ese, const CommandApdu& command, function in namespace:android::esed::pn81a
84 const int ret = ese.transceive(command.vector(), responseBuffer);
88 std::string errMsg = "Failed to transceive data between AP and eSE";
  /frameworks/base/core/java/android/nfc/tech/
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}.
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}.
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");
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...]
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} timeout in milliseconds
    [all...]
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}.
110 * that can be sent with {@link #transceive}.
123 public byte[] transceive(byte[] data) throws IOException { method in class:NfcF
124 return transceive(data, true);
128 * Return the maximum number of bytes that can be sent with {@link #transceive}.
129 * @return the maximum number of bytes that can be sent with {@link #transceive}.
136 * Set the {@link #transceive} timeout in milliseconds.
138 * <p>The timeout only applies to {@link #transceive} on this object,
161 * Get the current {@link #transceive} timeout in milliseconds
    [all...]
MifareUltralight.java 164 return transceive(cmd, false);
193 transceive(cmd, false); method
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} timeout in milliseconds
    [all...]
MifareClassic.java 395 if (transceive(cmd, false) != null) {
425 return transceive(cmd, false);
454 transceive(cmd, false); method
482 transceive(cmd.array(), false);
510 transceive(cmd.array(), false);
532 transceive(cmd, false); method
554 transceive(cmd, false); method
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...]
  /frameworks/base/nfc-extras/java/com/android/nfc_extras/
NfcExecutionEnvironment.java 201 public byte[] transceive(byte[] in) throws IOException { method in class:NfcExecutionEnvironment
204 b = mExtras.getService().transceive(mExtras.mPackageName, in);
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeP2pDevice.java 60 public byte[] transceive(byte[] data) { method in class:NativeP2pDevice
NativeNfcTag.java 320 public synchronized byte[] transceive(byte[] data, boolean raw, int[] returnCode) { method in class:NativeNfcTag
620 byte[] respData = transceive(readCmd, false, retCode);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/
ProtocolParamsReaderActivity.java 188 byte[] ats = nfcA.transceive(new byte[] { (byte) 0xE0, (byte)0xF0});
211 nfcA.transceive(new byte[] {(byte) 0xC2});
  /external/libese/libese/include/ese/
ese_hw_api.h 165 ese_transceive_op_t *transceive; member in struct:EseOperations
  /packages/apps/Nfc/src/com/android/nfc/
DeviceHost.java 71 byte[] transceive(byte[] data, boolean raw, int[] returnCode); method in interface:DeviceHost.TagEndpoint
115 public byte[] transceive(byte[] data); method in interface:DeviceHost.NfcDepEndpoint
NfcService.java 1325 public TransceiveResult transceive(int nativeHandle, byte[] data, boolean raw) method in class:NfcService.TagService
    [all...]
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/17/
android.jar 

Completed in 319 milliseconds

1 2