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

1 2 3 4 5 6 7 8 910

  /frameworks/base/core/java/android/nfc/
FormatException.java 17 package android.nfc;
TagLostException.java 17 package android.nfc;
NfcEvent.java 17 package android.nfc;
20 * Wraps information associated with any NFC event.
37 * The {@link NfcAdapter} associated with the NFC event.
42 * The major LLCP version number of the peer associated with the NFC event.
47 * The minor LLCP version number of the peer associated with the NFC event.
NfcManager.java 17 package android.nfc;
33 * <p>For more information about using NFC, read the
34 * <a href="{@docRoot}guide/topics/nfc/index.html">Near Field Communication</a> developer guide.</p>
62 * Get the default NFC Adapter for this device.
64 * @return the default NFC Adapter
TechListParcel.java 17 package android.nfc;
  /frameworks/base/core/java/android/nfc/cardemulation/
OffHostApduService.java 17 package android.nfc.cardemulation;
28 * extended to describe one or more NFC applications that are residing
34 * please read the <a href="{@docRoot}guide/topics/nfc/ce.html">
35 * NFC card emulation developer guide.</a></p>
38 * <h3>NFC Protocols</h3>
39 * <p>Off-host applications represented by this class are based on the NFC-Forum ISO-DEP
45 * <p>When a remote NFC device wants to talk to your
46 * off-host NFC application, it sends a so-called
97 * &lt;action android:name="android.nfc.cardemulation.action.OFF_HOST_APDU_SERVICE"/&gt;
99 * &lt;meta-data android:name="android.nfc.cardemulation.off_host_apdu_ervice" android:resource="@xml/apduservice"/&gt
    [all...]
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
pn532.cxx 49 upm::PN532 *nfc = new upm::PN532(3, 2); local
51 if (!nfc->init())
54 uint32_t vers = nfc->getFirmwareVersion();
67 nfc->setPassiveActivationRetries(0xff);
69 nfc->SAMConfig();
77 if (nfc->readPassiveTargetID(nfc->BAUD_MIFARE_ISO14443A,
86 printf("SAK: 0x%02x\n", nfc->getSAK());
87 printf("ATQA: 0x%04x\n\n", nfc->getATQA());
99 delete nfc;
    [all...]
pn532-writeurl.cxx 42 upm::PN532 *nfc = new upm::PN532(3, 2); local
44 if (!nfc->init())
47 uint32_t vers = nfc->getFirmwareVersion();
60 nfc->setPassiveActivationRetries(0xff);
62 nfc->SAMConfig();
71 if (nfc->readPassiveTargetID(nfc->BAUD_MIFARE_ISO14443A,
80 printf("SAK: 0x%02x\n", nfc->getSAK());
81 printf("ATQA: 0x%04x\n\n", nfc->getATQA());
101 if (!nfc->ntag2xx_WriteNDEFURI(nfc->NDEF_URIPREFIX_HTTP, url, 48)
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/
LlcpException.java 17 package com.android.nfc;
19 import android.nfc.ErrorCodes;
LlcpPacket.java 17 package com.android.nfc;
NfcBackupAgent.java 17 package com.android.nfc;
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepException.java 17 package com.android.nfc.snep;
  /frameworks/base/cmds/svc/src/com/android/commands/svc/
NfcCommand.java 22 import android.nfc.INfcAdapter;
29 super("nfc");
34 return "Control NFC functions";
41 + "usage: svc nfc [enable|disable]\n"
42 + " Turn NFC on or off.\n\n";
62 INfcAdapter nfc = INfcAdapter.Stub local
66 nfc.enable();
68 nfc.disable(true);
70 System.err.println("NFC operation failed: " + e);
73 System.err.println("NFC feature not supported.")
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/
NfcDialogs.java 17 package com.android.cts.verifier.nfc;
27 /** Class containing methods to create common dialogs for NFC activities. */
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/
OffHostService.java 1 package com.android.cts.verifier.nfc.hce;
AccessService.java 1 package com.android.cts.verifier.nfc.hce;
CommandApdu.java 1 package com.android.cts.verifier.nfc.hce;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
TagTester.java 17 package com.android.cts.verifier.nfc.tech;
19 import android.nfc.Tag;
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
DefaultRemovedActivity.java 17 package com.android.nfc.cardemulation;
37 ap.mMessage = getString(com.android.nfc.R.string.default_pay_app_removed);
  /developers/build/prebuilts/gradle/BeamLargeFiles/Application/src/main/java/com/example/android/beamlargefiles/
BeamLargeFilesFragment.java 21 import android.nfc.NfcAdapter;
22 import android.nfc.NfcEvent;
28 * This class demonstrates how to use Beam to send files too large to transfer reliably via NFC.
30 * <p>While any type of data can be placed into a normal NDEF messages, NFC is not considered
32 * Because NFC requires devices to be in extremely close proximity, this is not ideal.
34 * <p>Instead, Android 4.2+ devices can use NFC to perform an initial handshake, before handing
69 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(a); local
70 if (nfc != null) {
71 Log.w(TAG, "NFC available. Setting Beam Push URI callback");
72 nfc.setBeamPushUrisCallback(this, a)
    [all...]
  /developers/samples/android/connectivity/nfc/BeamLargeFiles/Application/src/main/java/com/example/android/beamlargefiles/
BeamLargeFilesFragment.java 21 import android.nfc.NfcAdapter;
22 import android.nfc.NfcEvent;
28 * This class demonstrates how to use Beam to send files too large to transfer reliably via NFC.
30 * <p>While any type of data can be placed into a normal NDEF messages, NFC is not considered
32 * Because NFC requires devices to be in extremely close proximity, this is not ideal.
34 * <p>Instead, Android 4.2+ devices can use NFC to perform an initial handshake, before handing
69 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(a); local
70 if (nfc != null) {
71 Log.w(TAG, "NFC available. Setting Beam Push URI callback");
72 nfc.setBeamPushUrisCallback(this, a)
    [all...]
  /development/samples/browseable/BeamLargeFiles/src/com.example.android.beamlargefiles/
BeamLargeFilesFragment.java 21 import android.nfc.NfcAdapter;
22 import android.nfc.NfcEvent;
28 * This class demonstrates how to use Beam to send files too large to transfer reliably via NFC.
30 * <p>While any type of data can be placed into a normal NDEF messages, NFC is not considered
32 * Because NFC requires devices to be in extremely close proximity, this is not ideal.
34 * <p>Instead, Android 4.2+ devices can use NFC to perform an initial handshake, before handing
69 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(a); local
70 if (nfc != null) {
71 Log.w(TAG, "NFC available. Setting Beam Push URI callback");
72 nfc.setBeamPushUrisCallback(this, a)
    [all...]
  /developers/build/prebuilts/gradle/CardReader/Application/src/main/java/com/example/android/cardreader/
CardReaderFragment.java 20 import android.nfc.NfcAdapter;
37 // activity is interested in NFC-A devices (including other Android devices), and that the
83 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(activity); local
84 if (nfc != null) {
85 nfc.enableReaderMode(activity, mLoyaltyCardReader, READER_FLAGS, null);
92 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(activity); local
93 if (nfc != null) {
94 nfc.disableReaderMode(activity);
  /developers/samples/android/connectivity/nfc/CardReader/Application/src/main/java/com/example/android/cardreader/
CardReaderFragment.java 20 import android.nfc.NfcAdapter;
37 // activity is interested in NFC-A devices (including other Android devices), and that the
83 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(activity); local
84 if (nfc != null) {
85 nfc.enableReaderMode(activity, mLoyaltyCardReader, READER_FLAGS, null);
92 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(activity); local
93 if (nfc != null) {
94 nfc.disableReaderMode(activity);
  /development/samples/browseable/CardReader/src/com.example.android.cardreader/
CardReaderFragment.java 20 import android.nfc.NfcAdapter;
37 // activity is interested in NFC-A devices (including other Android devices), and that the
83 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(activity); local
84 if (nfc != null) {
85 nfc.enableReaderMode(activity, mLoyaltyCardReader, READER_FLAGS, null);
92 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(activity); local
93 if (nfc != null) {
94 nfc.disableReaderMode(activity);

Completed in 400 milliseconds

1 2 3 4 5 6 7 8 910