/frameworks/base/core/java/android/nfc/ |
D | Tag.java | 111 public final class Tag implements Parcelable { class 125 public Tag(byte[] id, int[] techList, Bundle[] techListExtras, int serviceHandle, in Tag() method in Tag 151 public static Tag createMockTag(byte[] id, int[] techList, Bundle[] techListExtras) { in createMockTag() 153 return new Tag(id, techList, techListExtras, 0, null); in createMockTag() 268 public Tag rediscover() throws IOException { in rediscover() 277 Tag newTag = mTagService.rediscover(getServiceHandle()); in rediscover() 376 public static final Parcelable.Creator<Tag> CREATOR = 377 new Parcelable.Creator<Tag>() { 379 public Tag createFromParcel(Parcel in) { 383 byte[] id = Tag.readBytesWithNull(in); [all …]
|
D | INfcAdapter.aidl | 22 import android.nfc.Tag; 47 void dispatch(in Tag tag); in dispatch()
|
D | INfcTag.aidl | 20 import android.nfc.Tag; 41 Tag rediscover(int nativehandle); in rediscover()
|
D | Tag.aidl | 19 parcelable Tag;
|
D | NfcAdapter.java | 1222 public void dispatch(Tag tag) { in dispatch()
|
/frameworks/compile/libbcc/include/bcinfo/Wrap/ |
D | BCHeaderField.h | 38 } Tag; typedef 41 BCHeaderField(Tag ID, size_t len, uint8_t* data) : in BCHeaderField() 72 ID_ = static_cast<Tag>(field); in Read() 95 Tag getID() const { in getID() 113 Tag ID_;
|
/frameworks/base/core/java/android/nfc/tech/ |
D | NfcBarcode.java | 19 import android.nfc.Tag; 50 public static NfcBarcode get(Tag tag) { in get() 63 public NfcBarcode(Tag tag) throws RemoteException { in NfcBarcode()
|
D | NfcV.java | 19 import android.nfc.Tag; 54 public static NfcV get(Tag tag) { in get() 64 public NfcV(Tag tag) throws RemoteException { in NfcV()
|
D | NfcB.java | 19 import android.nfc.Tag; 53 public static NfcB get(Tag tag) { in get() 63 public NfcB(Tag tag) throws RemoteException { in NfcB()
|
D | BasicTagTechnology.java | 20 import android.nfc.Tag; 33 final Tag mTag; 38 BasicTagTechnology(Tag tag, int tech) throws RemoteException { in BasicTagTechnology() 44 public Tag getTag() { in getTag()
|
D | NfcA.java | 20 import android.nfc.Tag; 57 public static NfcA get(Tag tag) { in get() 67 public NfcA(Tag tag) throws RemoteException { in NfcA()
|
D | NfcF.java | 20 import android.nfc.Tag; 57 public static NfcF get(Tag tag) { in get() 67 public NfcF(Tag tag) throws RemoteException { in NfcF()
|
D | IsoDep.java | 20 import android.nfc.Tag; 60 public static IsoDep get(Tag tag) { in get() 70 public IsoDep(Tag tag) in IsoDep()
|
D | TagTechnology.java | 19 import android.nfc.Tag; 164 public Tag getTag(); in getTag()
|
D | NdefFormatable.java | 24 import android.nfc.Tag; 59 public static NdefFormatable get(Tag tag) { in get() 72 public NdefFormatable(Tag tag) throws RemoteException { in NdefFormatable()
|
D | MifareUltralight.java | 20 import android.nfc.Tag; 93 public static MifareUltralight get(Tag tag) { in get() 103 public MifareUltralight(Tag tag) throws RemoteException { in MifareUltralight()
|
D | Ndef.java | 24 import android.nfc.Tag; 146 public static Ndef get(Tag tag) { in get() 159 public Ndef(Tag tag) throws RemoteException { in Ndef()
|
D | MifareClassic.java | 20 import android.nfc.Tag; 135 public static MifareClassic get(Tag tag) { in get() 145 public MifareClassic(Tag tag) throws RemoteException { in MifareClassic()
|
/frameworks/base/docs/html/guide/topics/connectivity/nfc/ |
D | advanced-nfc.jd | 8 <li><a href="#tag-tech">Working with Supported Tag Technologies</a> 23 <h2 id="tag-tech">Working with Supported Tag Technologies</h2> 32 use the {@link android.nfc.Tag#getTechList getTechList()} method to determine the technologies 136 href="{@docRoot}guide/topics/connectivity/nfc/nfc.html#tag-dispatch">The Tag Dispatch System</a>.</… 137 <li>When your application receives the intent, obtain the {@link android.nfc.Tag} object from 139 <pre>Tag tagFromIntent = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);</pre></li> 142 enumerate the supported technologies of the tag by calling {@link android.nfc.Tag#getTechList 144 of {@link android.nfc.tech.MifareUltralight} from a {@link android.nfc.Tag}, do the following: 165 import android.nfc.Tag; 175 public void writeTag(Tag tag, String tagText) { [all …]
|
D | nfc.jd | 9 <li><a href="#tag-dispatch">The Tag Dispatch System</a> 70 <h2 id="tag-dispatch">The Tag Dispatch System</h2> 154 android.nfc.Tag} object that has information about the tag's technologies and the payload are 289 <p class="figure"><strong>Figure 1. </strong> Tag Dispatch System</p> 391 supported by the tag, which you can obtain by calling {@link android.nfc.Tag#getTechList 420 android.nfc.Tag#getTechList getTechList()}. This provides <code>AND</code> and <code>OR</code> 457 href="{@docRoot}guide/topics/connectivity/nfc/advanced-nfc.html#tag-tech">Working with Supported Tag 477 <li>{@link android.nfc.NfcAdapter#EXTRA_TAG} (required): A {@link android.nfc.Tag} object 506 <p>Alternatively, you can obtain a {@link android.nfc.Tag} object from the intent, which will 509 <pre>Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);</pre>
|
/frameworks/base/docs/html/training/improving-layouts/ |
D | reusing-layouts.jd | 21 <li><a href="#Include">Use the <include> Tag</a></li> 22 <li><a href="#Merge">Use the <merge> Tag</a></li> 73 <h2 id="Include">Use the <include> Tag</h2> 118 <h2 id="Merge">Use the <merge> Tag</h2>
|
/frameworks/base/services/java/com/android/server/am/ |
D | EventLogTags.logtags | 85 30040 am_wtf (User|1|5),(PID|1|5),(Process Name|3),(Flags|1|5),(Tag|3),(Message|3)
|
/frameworks/base/docs/html/about/versions/ |
D | android-2.3.3.jd | 99 <li>{@link android.nfc.Tag}, which represents a tag scanned by the device.
|
/frameworks/base/docs/html/google/gcm/ |
D | gs.jd | 192 // Tag for log messages.
|
/frameworks/base/ |
D | Android.mk | 299 frameworks/base/core/java/android/nfc/Tag.aidl \
|