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

1 2

  /frameworks/base/core/java/android/nfc/
FormatException.java 17 package android.nfc;
LlcpPacket.java 17 package android.nfc;
NdefMessage.java 17 package android.nfc;
23 * Represents an NDEF (NFC Data Exchange Format) data message that contains one or more {@link
ErrorCodes.java 17 package android.nfc;
NdefTag.java 17 package android.nfc;
24 * In practice, a tag is a thing that an NFC-enabled device can communicate with. This
42 * Target for NFC Forum Type 1 compliant tag.
48 * Target for NFC Forum Type 2 compliant tag.
54 * Target for NFC Forum Type 3 compliant tag.
60 * Target for NFC Forum Type 4 compliant tag.
66 * Target for NFC Forum Enabled: Mifare Classic tag.
67 * <p>This is not strictly a NFC Forum tag type, but is a common
82 * Hidden constructor to be used by NFC service only.
NdefTagConnection.java 17 package android.nfc;
29 * Use of this class requires the {@link android.Manifest.permission#NFC}
40 private static final String TAG = "NFC";
76 * <p>Requires {@link android.Manifest.permission#NFC} permission.
117 * <p>Requires {@link android.Manifest.permission#NFC} permission.
146 * <p>Requires {@link android.Manifest.permission#NFC} permission.
173 * <p>Requires {@link android.Manifest.permission#NFC} permission.
RawTagConnection.java 17 package android.nfc;
33 * Use of this class requires the {@link android.Manifest.permission#NFC}
45 // during attemptDeadServiceRecovery() when NFC crashes.
46 // Not locked - we accept a best effort attempt when NFC crashes.
50 private static final String TAG = "NFC";
78 /** NFC service dead - attempt best effort recovery */
87 Log.e(TAG, "second RemoteException trying to recover from dead NFC service", e2);
93 * <p>Requires {@link android.Manifest.permission#NFC} permission.
100 * <p>Requires {@link android.Manifest.permission#NFC} permission.
110 * <p>Requires {@link android.Manifest.permission#NFC} permission
    [all...]
  /frameworks/base/core/java/com/android/internal/nfc/
LlcpException.java 17 package com.android.internal.nfc;
NfcException.java 17 package com.android.internal.nfc;
P2pDevice.java 17 package com.android.internal.nfc;
59 * Returns the remote NFC-IP1 General Bytes.
P2pInitiator.java 17 package com.android.internal.nfc;
21 import android.nfc.IP2pInitiator;
26 * P2pInitiator represents the initiator in an NFC-IP1 peer-to-peer
43 * @param handle The handle returned by the NFC service and used to identify
LlcpServiceSocket.java 17 package com.android.internal.nfc;
21 import android.nfc.ErrorCodes;
22 import android.nfc.ILlcpSocket;
23 import android.nfc.ILlcpServiceSocket;
36 * The handle returned by the NFC service and used to identify the LLCP
76 * The entry point to the Nfc Service for LlcpServiceSocket
79 * The handle returned by the NFC service and used to identify
P2pTarget.java 17 package com.android.internal.nfc;
21 import android.nfc.ErrorCodes;
22 import android.nfc.IP2pTarget;
27 * P2pTarget represents the target in an NFC-IP1 peer-to-peer communication.
65 * @param handle The handle returned by the NFC service and used to identify
106 * targets can be discovered. It restarts the NFC discovery loop.
LlcpConnectionlessSocket.java 17 package com.android.internal.nfc;
21 import android.nfc.ErrorCodes;
22 import android.nfc.ILlcpConnectionlessSocket;
23 import android.nfc.LlcpPacket;
31 * The handle returned by the NFC service and used to identify the LLCP connectionless socket in
46 * @param service The entry point to the Nfc Service for LLCP Connectionless socket class.
47 * @param handle The handle returned by the NFC service and used to identify
  /development/samples/NFCDemo/src/com/example/android/nfc/record/
ParsedNdefRecord.java 17 package com.example.android.nfc.record;
TextRecord.java 16 package com.example.android.nfc.record;
19 import android.nfc.NdefRecord;
27 import com.example.android.nfc.R;
33 * An NFC Text Record
72 * NFC Forum "Text Record Type Definition" section 3.2.1.
UriRecord.java 16 package com.example.android.nfc.record;
20 import android.nfc.NdefRecord;
31 import com.example.android.nfc.R;
46 * NFC Forum "URI Record Type Definition"
49 * per section 3.2.2 of the NFC Forum URI Record Type Definition document.
87 .put((byte) 0x23, "urn:nfc:")
107 * Convert {@link android.nfc.NdefRecord} into a {@link android.net.Uri}.
136 * NFC Forum "URI Record Type Definition" section 3.2.2.
  /packages/apps/Nfc/src/com/android/nfc/
NativeNdefTag.java 17 package com.android.nfc;
NativeLlcpConnectionlessSocket.java 17 package com.android.nfc;
19 import android.nfc.LlcpPacket;
NativeLlcpServiceSocket.java 17 package com.android.nfc;
NativeLlcpSocket.java 17 package com.android.nfc;
NativeP2pDevice.java 17 package com.android.nfc;
  /development/samples/NFCDemo/src/com/example/android/nfc/simulator/
MockNdefMessages.java 16 package com.example.android.nfc.simulator;
19 * This class provides a list of fake NFC Ndef format Tags.
FakeTagsActivity.java 16 package com.example.android.nfc.simulator;
20 import android.nfc.NdefMessage;
21 import android.nfc.NdefRecord;
22 import android.nfc.NfcAdapter;
92 new TagDescription("Broadcast NFC Text Tag", MockNdefMessages.ENGLISH_PLAIN_TEXT));
94 "Broadcast NFC SmartPoster URL & text", MockNdefMessages.SMART_POSTER_URL_AND_TEXT));
96 "Broadcast NFC SmartPoster URL", MockNdefMessages.SMART_POSTER_URL_NO_TEXT));
  /development/samples/NFCDemo/src/com/example/android/nfc/
NdefMessageParser.java 16 package com.example.android.nfc;
18 import android.nfc.NdefMessage;
19 import android.nfc.NdefRecord;
21 import com.example.android.nfc.record.ParsedNdefRecord;
22 import com.example.android.nfc.record.SmartPoster;
23 import com.example.android.nfc.record.TextRecord;
24 import com.example.android.nfc.record.UriRecord;

Completed in 613 milliseconds

1 2