Home
last modified time | relevance | path

Searched refs:NfcTag (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/device/nfc/
Dnfc_tag_technology.h13 class NfcTag; variable
39 NfcTag* tag() const { return tag_; } in tag()
46 explicit NfcTagTechnology(NfcTag* tag);
53 NfcTag* tag_;
88 static NfcNdefTagTechnology* Create(NfcTag* tag);
93 explicit NfcNdefTagTechnology(NfcTag* tag);
Dnfc_tag.cc9 NfcTag::NfcTag() { in NfcTag() function in device::NfcTag
12 NfcTag::~NfcTag() { in ~NfcTag()
Dnfc_tag.h27 class NfcTag {
57 virtual void RecordsReceived(NfcTag* tag, const NfcNdefMessage& message) {} in RecordsReceived()
60 virtual ~NfcTag();
85 NfcTag();
88 DISALLOW_COPY_AND_ASSIGN(NfcTag);
Dnfc_adapter.h18 class NfcTag; variable
68 virtual void TagFound(NfcAdapter* adapter, NfcTag* tag) {} in TagFound()
72 virtual void TagLost(NfcAdapter* adapter, NfcTag* tag) {} in TagLost()
95 typedef std::vector<NfcTag*> TagList;
167 virtual NfcTag* GetTag(const std::string& identifier) const;
182 typedef std::map<const std::string, NfcTag*> TagsMap;
Dnfc_tag_technology.cc11 NfcTagTechnology::NfcTagTechnology(NfcTag* tag) : tag_(tag) { in NfcTagTechnology()
25 NfcNdefTagTechnology::NfcNdefTagTechnology(NfcTag* tag) in NfcNdefTagTechnology()
33 NfcNdefTagTechnology* NfcNdefTagTechnology::Create(NfcTag* tag) { in Create()
Dnfc_adapter.cc44 NfcTag* NfcAdapter::GetTag(const std::string& identifier) const { in GetTag()