Searched refs:NfcTag (Results 1 – 6 of 6) sorted by relevance
13 class NfcTag; variable39 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);
9 NfcTag::NfcTag() { in NfcTag() function in device::NfcTag12 NfcTag::~NfcTag() { in ~NfcTag()
27 class NfcTag {57 virtual void RecordsReceived(NfcTag* tag, const NfcNdefMessage& message) {} in RecordsReceived()60 virtual ~NfcTag();85 NfcTag();88 DISALLOW_COPY_AND_ASSIGN(NfcTag);
18 class NfcTag; variable68 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;
11 NfcTagTechnology::NfcTagTechnology(NfcTag* tag) : tag_(tag) { in NfcTagTechnology()25 NfcNdefTagTechnology::NfcNdefTagTechnology(NfcTag* tag) in NfcNdefTagTechnology()33 NfcNdefTagTechnology* NfcNdefTagTechnology::Create(NfcTag* tag) { in Create()
44 NfcTag* NfcAdapter::GetTag(const std::string& identifier) const { in GetTag()