HomeSort by relevance Sort by last modified time
    Searched refs:TagTechnology (Results 1 - 25 of 25) sorted by null

  /frameworks/base/core/java/android/nfc/tech/
IsoDep.java 61 if (!tag.hasTech(TagTechnology.ISO_DEP)) return null;
72 super(tag, TagTechnology.ISO_DEP);
73 Bundle extras = tag.getTechExtras(TagTechnology.ISO_DEP);
94 int err = mTag.getTagService().setTimeout(TagTechnology.ISO_DEP, timeout);
112 return mTag.getTagService().getTimeout(TagTechnology.ISO_DEP);
NfcA.java 58 if (!tag.hasTech(TagTechnology.NFC_A)) return null;
68 super(tag, TagTechnology.NFC_A);
69 Bundle extras = tag.getTechExtras(TagTechnology.NFC_A);
147 int err = mTag.getTagService().setTimeout(TagTechnology.NFC_A, timeout);
165 return mTag.getTagService().getTimeout(TagTechnology.NFC_A);
NfcF.java 58 if (!tag.hasTech(TagTechnology.NFC_F)) return null;
68 super(tag, TagTechnology.NFC_F);
69 Bundle extras = tag.getTechExtras(TagTechnology.NFC_F);
146 int err = mTag.getTagService().setTimeout(TagTechnology.NFC_F, timeout);
164 return mTag.getTagService().getTimeout(TagTechnology.NFC_F);
NfcB.java 54 if (!tag.hasTech(TagTechnology.NFC_B)) return null;
64 super(tag, TagTechnology.NFC_B);
65 Bundle extras = tag.getTechExtras(TagTechnology.NFC_B);
NfcBarcode.java 51 if (!tag.hasTech(TagTechnology.NFC_BARCODE)) return null;
64 super(tag, TagTechnology.NFC_BARCODE);
65 Bundle extras = tag.getTechExtras(TagTechnology.NFC_BARCODE);
NfcV.java 55 if (!tag.hasTech(TagTechnology.NFC_V)) return null;
65 super(tag, TagTechnology.NFC_V);
66 Bundle extras = tag.getTechExtras(TagTechnology.NFC_V);
MifareUltralight.java 94 if (!tag.hasTech(TagTechnology.MIFARE_ULTRALIGHT)) return null;
104 super(tag, TagTechnology.MIFARE_ULTRALIGHT);
112 Bundle extras = tag.getTechExtras(TagTechnology.MIFARE_ULTRALIGHT);
243 TagTechnology.MIFARE_ULTRALIGHT, timeout);
261 return mTag.getTagService().getTimeout(TagTechnology.MIFARE_ULTRALIGHT);
TagTechnology.java 25 * {@link TagTechnology} is an interface to a technology in a {@link Tag}.
27 * Obtain a {@link TagTechnology} implementation by calling the static method <code>get()</code>
32 * {@link TagTechnology} implementations provide access to these different
38 * {@link TagTechnology} implementations.
48 * {@link TagTechnology} implementations. If it is not provided, the
59 * {@link TagTechnology} implementations provide methods that fall into two classes:
72 * {@link TagTechnology}, and it will cancel all other blocked I/O operations on other threads
74 * <li>Only one {@link TagTechnology} can be connected at a time. Other calls to
83 public interface TagTechnology extends Closeable {
161 * Get the {@link Tag} object backing this {@link TagTechnology} object
    [all...]
NdefFormatable.java 60 if (!tag.hasTech(TagTechnology.NDEF_FORMATABLE)) return null;
73 super(tag, TagTechnology.NDEF_FORMATABLE);
Ndef.java 147 if (!tag.hasTech(TagTechnology.NDEF)) return null;
160 super(tag, TagTechnology.NDEF);
161 Bundle extras = tag.getTechExtras(TagTechnology.NDEF);