Home | History | Annotate | Download | only in nfc

Lines Matching refs:TransceiveResult

53 import android.nfc.TransceiveResult;
1198 public TransceiveResult transceive(int nativeHandle, byte[] data, boolean raw)
1215 return new TransceiveResult(TransceiveResult.RESULT_EXCEEDED_LENGTH, null);
1221 result = TransceiveResult.RESULT_SUCCESS;
1223 result = TransceiveResult.RESULT_TAGLOST;
1225 result = TransceiveResult.RESULT_FAILURE;
1227 return new TransceiveResult(result, response);