Home
last modified time | relevance | path

Searched refs:TagTechnology (Results 1 – 20 of 20) sorted by relevance

/aosp12/frameworks/base/core/java/android/nfc/
H A DTag.java31 import android.nfc.tech.TagTechnology;
165 case TagTechnology.ISO_DEP: in generateTechStringList()
168 case TagTechnology.MIFARE_CLASSIC: in generateTechStringList()
171 case TagTechnology.MIFARE_ULTRALIGHT: in generateTechStringList()
174 case TagTechnology.NDEF: in generateTechStringList()
177 case TagTechnology.NDEF_FORMATABLE: in generateTechStringList()
180 case TagTechnology.NFC_A: in generateTechStringList()
183 case TagTechnology.NFC_B: in generateTechStringList()
186 case TagTechnology.NFC_F: in generateTechStringList()
189 case TagTechnology.NFC_V: in generateTechStringList()
[all …]
/aosp12/frameworks/base/core/java/android/nfc/tech/
H A DNfcA.java58 if (!tag.hasTech(TagTechnology.NFC_A)) return null; in get()
68 super(tag, TagTechnology.NFC_A); in NfcA()
69 Bundle extras = tag.getTechExtras(TagTechnology.NFC_A); in NfcA()
147 int err = mTag.getTagService().setTimeout(TagTechnology.NFC_A, timeout); in setTimeout()
165 return mTag.getTagService().getTimeout(TagTechnology.NFC_A); in getTimeout()
H A DNfcF.java58 if (!tag.hasTech(TagTechnology.NFC_F)) return null; in get()
68 super(tag, TagTechnology.NFC_F); in NfcF()
69 Bundle extras = tag.getTechExtras(TagTechnology.NFC_F); in NfcF()
151 int err = mTag.getTagService().setTimeout(TagTechnology.NFC_F, timeout); in setTimeout()
169 return mTag.getTagService().getTimeout(TagTechnology.NFC_F); in getTimeout()
H A DIsoDep.java61 if (!tag.hasTech(TagTechnology.ISO_DEP)) return null; in get()
72 super(tag, TagTechnology.ISO_DEP); in IsoDep()
73 Bundle extras = tag.getTechExtras(TagTechnology.ISO_DEP); in IsoDep()
94 int err = mTag.getTagService().setTimeout(TagTechnology.ISO_DEP, timeout); in setTimeout()
112 return mTag.getTagService().getTimeout(TagTechnology.ISO_DEP); in getTimeout()
H A DMifareUltralight.java94 if (!tag.hasTech(TagTechnology.MIFARE_ULTRALIGHT)) return null; in get()
104 super(tag, TagTechnology.MIFARE_ULTRALIGHT); in MifareUltralight()
112 Bundle extras = tag.getTechExtras(TagTechnology.MIFARE_ULTRALIGHT); in MifareUltralight()
243 TagTechnology.MIFARE_ULTRALIGHT, timeout); in setTimeout()
261 return mTag.getTagService().getTimeout(TagTechnology.MIFARE_ULTRALIGHT); in getTimeout()
H A DNfcBarcode.java51 if (!tag.hasTech(TagTechnology.NFC_BARCODE)) return null; in get()
64 super(tag, TagTechnology.NFC_BARCODE); in NfcBarcode()
65 Bundle extras = tag.getTechExtras(TagTechnology.NFC_BARCODE); in NfcBarcode()
H A DNfcB.java54 if (!tag.hasTech(TagTechnology.NFC_B)) return null; in get()
64 super(tag, TagTechnology.NFC_B); in NfcB()
65 Bundle extras = tag.getTechExtras(TagTechnology.NFC_B); in NfcB()
H A DNfcV.java55 if (!tag.hasTech(TagTechnology.NFC_V)) return null; in get()
65 super(tag, TagTechnology.NFC_V); in NfcV()
66 Bundle extras = tag.getTechExtras(TagTechnology.NFC_V); in NfcV()
H A DMifareClassic.java136 if (!tag.hasTech(TagTechnology.MIFARE_CLASSIC)) return null; in get()
146 super(tag, TagTechnology.MIFARE_CLASSIC); in MifareClassic()
603 int err = mTag.getTagService().setTimeout(TagTechnology.MIFARE_CLASSIC, timeout); in setTimeout()
621 return mTag.getTagService().getTimeout(TagTechnology.MIFARE_CLASSIC); in getTimeout()
H A DNdef.java146 if (!tag.hasTech(TagTechnology.NDEF)) return null; in get()
159 super(tag, TagTechnology.NDEF); in Ndef()
160 Bundle extras = tag.getTechExtras(TagTechnology.NDEF); in Ndef()
H A DNdefFormatable.java59 if (!tag.hasTech(TagTechnology.NDEF_FORMATABLE)) return null; in get()
72 super(tag, TagTechnology.NDEF_FORMATABLE); in NdefFormatable()
H A DTagTechnology.java83 public interface TagTechnology extends Closeable { interface
H A DBasicTagTechnology.java30 abstract class BasicTagTechnology implements TagTechnology {
/aosp12/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
H A DNativeNfcManager.java22 import android.nfc.tech.TagTechnology;
313 case (TagTechnology.NFC_A): in getMaxTransceiveLength()
314 case (TagTechnology.MIFARE_CLASSIC): in getMaxTransceiveLength()
315 case (TagTechnology.MIFARE_ULTRALIGHT): in getMaxTransceiveLength()
317 case (TagTechnology.NFC_B): in getMaxTransceiveLength()
322 case (TagTechnology.NFC_V): in getMaxTransceiveLength()
324 case (TagTechnology.ISO_DEP): in getMaxTransceiveLength()
326 case (TagTechnology.NFC_F): in getMaxTransceiveLength()
351 if (getMaxTransceiveLength(TagTechnology.ISO_DEP) > 261) in getExtendedLengthApdusSupported()
H A DNativeNfcTag.java34 import android.nfc.tech.TagTechnology;
189 if ((technology == TagTechnology.NDEF) || in connectWithStatus()
406 if (hasTech(TagTechnology.MIFARE_CLASSIC)) { in makeReadOnly()
666 case TagTechnology.NFC_A: { in getTechExtras()
678 case TagTechnology.NFC_B: { in getTechExtras()
694 case TagTechnology.NFC_F: { in getTechExtras()
709 case TagTechnology.ISO_DEP: { in getTechExtras()
710 if (hasTech(TagTechnology.NFC_A)) { in getTechExtras()
719 case TagTechnology.NFC_V: { in getTechExtras()
728 case TagTechnology.MIFARE_ULTRALIGHT: { in getTechExtras()
[all …]
/aosp12/packages/apps/Nfc/src/com/android/nfc/
H A DNfcService.java61 import android.nfc.tech.TagTechnology;
1550 techCodeToMask.put(TagTechnology.NFC_A, NfcService.NFC_POLL_A); in computeLockscreenPollMask()
1551 techCodeToMask.put(TagTechnology.NFC_B, NfcService.NFC_POLL_B); in computeLockscreenPollMask()
1552 techCodeToMask.put(TagTechnology.NFC_V, NfcService.NFC_POLL_V); in computeLockscreenPollMask()
1553 techCodeToMask.put(TagTechnology.NFC_F, NfcService.NFC_POLL_F); in computeLockscreenPollMask()
1554 techCodeToMask.put(TagTechnology.NFC_BARCODE, NfcService.NFC_POLL_KOVIO); in computeLockscreenPollMask()
1946 tag.removeTechnology(TagTechnology.NDEF); in rediscover()
1947 tag.removeTechnology(TagTechnology.NDEF_FORMATABLE); in rediscover()
2533 new int[]{TagTechnology.NDEF}, in handleMessage()
2580 if (tag.getConnectedTechnology() == TagTechnology.NFC_BARCODE) { in handleMessage()
/aosp12/frameworks/base/core/api/
H A Dcurrent.txt27465 public final class IsoDep implements android.nfc.tech.TagTechnology {
27480 public final class MifareClassic implements android.nfc.tech.TagTechnology {
27519 public final class MifareUltralight implements android.nfc.tech.TagTechnology {
27538 public final class Ndef implements android.nfc.tech.TagTechnology {
27559 public final class NdefFormatable implements android.nfc.tech.TagTechnology {
27569 public final class NfcA implements android.nfc.tech.TagTechnology {
27583 public final class NfcB implements android.nfc.tech.TagTechnology {
27595 public final class NfcBarcode implements android.nfc.tech.TagTechnology {
27607 public final class NfcF implements android.nfc.tech.TagTechnology {
27621 public final class NfcV implements android.nfc.tech.TagTechnology {
[all …]
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...
/aosp12/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt37780 Landroid/nfc/tech/TagTechnology;->ISO_DEP:I
37781 Landroid/nfc/tech/TagTechnology;->MIFARE_CLASSIC:I
37782 Landroid/nfc/tech/TagTechnology;->MIFARE_ULTRALIGHT:I
37783 Landroid/nfc/tech/TagTechnology;->NDEF:I
37784 Landroid/nfc/tech/TagTechnology;->NDEF_FORMATABLE:I
37785 Landroid/nfc/tech/TagTechnology;->NFC_A:I
37786 Landroid/nfc/tech/TagTechnology;->NFC_B:I
37787 Landroid/nfc/tech/TagTechnology;->NFC_BARCODE:I
37788 Landroid/nfc/tech/TagTechnology;->NFC_F:I
37789 Landroid/nfc/tech/TagTechnology;->NFC_V:I
[all …]
/aosp12/frameworks/opt/setupwizard/tools/docs/
H A Dandroid-22.txt18512 abstract class BasicTagTechnology implements android.nfc.tech.TagTechnology {
18647 public abstract interface TagTechnology implements java.io.Closeable {