OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NfcTag
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/device/nfc/
nfc_tag.cc
9
NfcTag
::
NfcTag
() {
12
NfcTag
::~
NfcTag
() {
nfc_tag_technology.h
13
class
NfcTag
;
38
// Returns a pointer to the associated
NfcTag
instance.
39
NfcTag
* tag() const { return tag_; }
46
explicit NfcTagTechnology(
NfcTag
* tag);
51
// The underlying
NfcTag
instance that data exchange operations through this
53
NfcTag
* tag_;
73
// use this method in conjunction with the
NfcTag
::Observer::RecordsReceived
88
static NfcNdefTagTechnology* Create(
NfcTag
* tag);
93
explicit NfcNdefTagTechnology(
NfcTag
* tag);
nfc_tag.h
12
//
NfcTag
represents a remote NFC tag. An NFC tag is a passive NFC device,
24
// The
NfcTag
class facilitates possible interactions with a tag. The most
27
class
NfcTag
{
57
virtual void RecordsReceived(
NfcTag
* tag, const NfcNdefMessage& message) {}
60
virtual ~
NfcTag
();
85
NfcTag
();
88
DISALLOW_COPY_AND_ASSIGN(
NfcTag
);
nfc_tag_technology.cc
11
NfcTagTechnology::NfcTagTechnology(
NfcTag
* tag) : tag_(tag) {
25
NfcNdefTagTechnology::NfcNdefTagTechnology(
NfcTag
* tag)
33
NfcNdefTagTechnology* NfcNdefTagTechnology::Create(
NfcTag
* tag) {
nfc_adapter.h
18
class
NfcTag
;
68
virtual void TagFound(NfcAdapter* adapter,
NfcTag
* tag) {}
72
virtual void TagLost(NfcAdapter* adapter,
NfcTag
* tag) {}
95
typedef std::vector<
NfcTag
*> TagList;
167
virtual
NfcTag
* GetTag(const std::string& identifier) const;
173
// NfcPeer and
NfcTag
instances.
179
// corresponding NfcPeer or
NfcTag
object, whose lifetime is managed by the
182
typedef std::map<const std::string,
NfcTag
*> TagsMap;
nfc_adapter.cc
44
NfcTag
* NfcAdapter::GetTag(const std::string& identifier) const {
/packages/apps/Nfc/nci/jni/
Pn544Interop.cpp
30
#include "
NfcTag
.h"
90
NfcTag
::ActivationState state =
NfcTag
::getInstance ().getActivationState ();
99
if (state ==
NfcTag
::Idle)
NativeNfcTag.cpp
23
#include "
NfcTag
.h"
493
NfcTag
& natTag =
NfcTag
::getInstance ();
497
if (i >=
NfcTag
::MAX_NUM_TECHNOLOGY)
504
if (natTag.getActivationState() !=
NfcTag
::Active)
560
NfcTag
& natTag =
NfcTag
::getInstance ();
568
if (
NfcTag
::getInstance ().isNdefDetectionTimedOut())
598
if (
NfcTag
::getInstance ().getActivationState () !=
NfcTag
::Sleep
[
all
...]
NfcTag.h
31
class
NfcTag
43
** Function:
NfcTag
50
NfcTag
();
57
** Description: Get a reference to the singleton
NfcTag
object.
59
** Returns: Reference to
NfcTag
object.
62
static
NfcTag
& getInstance ();
NfcTag.cpp
21
#include "
NfcTag
.h"
34
** Function:
NfcTag
41
NfcTag
::
NfcTag
()
65
** Description: Get a reference to the singleton
NfcTag
object.
67
** Returns: Reference to
NfcTag
object.
70
NfcTag
&
NfcTag
::getInstance ()
72
static
NfcTag
tag;
87
void
NfcTag
::initialize (nfc_jni_native_data* native
[
all
...]
NativeNfcManager.cpp
26
#include "
NfcTag
.h"
198
bool isP2p =
NfcTag
::getInstance ().isP2pDiscovered ();
202
NfcTag
::getInstance ().selectP2p();
207
NfcTag
::getInstance ().selectFirstTag();
275
NfcTag
::getInstance().connectionEventHandler(connEvent, eventData);
304
NfcTag
::getInstance().setActive(true);
309
NfcTag
::getInstance().setActivationState ();
342
NfcTag
::getInstance().connectionEventHandler (connEvent, eventData);
357
NfcTag
::getInstance().setDeactivationState (eventData->deactivated);
366
NfcTag
::getInstance().connectionEventHandler (connEvent, eventData)
[
all
...]
NativeSecureElement.cpp
20
#include "
NfcTag
.h"
154
int timeout =
NfcTag
::getInstance ().getTransceiveTimeout (TARGET_TYPE_ISO14443_4); //NFC service expects JNI to use ISO-DEP's timeout
Completed in 90 milliseconds