Home
last modified time | relevance | path

Searched refs:IsTechSupported (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/foundation/communication/nfc/interfaces/inner_api/tags/
H A Dnfca_tag.cpp29 if (tag.lock()->IsTechSupported(KITS::TagTechnology::NFC_MIFARE_CLASSIC_TECH)) { in NfcATag()
43 if (tag.expired() || !tag.lock()->IsTechSupported(KITS::TagTechnology::NFC_A_TECH)) { in GetTag()
H A Dmifare_ultralight_tag.cpp53 if (tag.expired() || !tag.lock()->IsTechSupported(KITS::TagTechnology::NFC_A_TECH) || in GetTag()
54 !tag.lock()->IsTechSupported(KITS::TagTechnology::NFC_MIFARE_ULTRALIGHT_TECH)) { in GetTag()
H A Dnfcb_tag.cpp38 if (tag.expired() || !tag.lock()->IsTechSupported(KITS::TagTechnology::NFC_B_TECH)) { in GetTag()
H A Dnfcf_tag.cpp38 if (tag.expired() || !tag.lock()->IsTechSupported(KITS::TagTechnology::NFC_F_TECH)) { in GetTag()
H A Disodep_tag.cpp37 if (tag.expired() || !tag.lock()->IsTechSupported(KITS::TagTechnology::NFC_ISODEP_TECH)) { in GetTag()
H A Dmifare_classic_tag.cpp89 if (tag.expired() || !tag.lock()->IsTechSupported(KITS::TagTechnology::NFC_A_TECH) || in GetTag()
90 !tag.lock()->IsTechSupported(KITS::TagTechnology::NFC_MIFARE_CLASSIC_TECH)) { in GetTag()
H A Dndef_formatable_tag.cpp30 …if (tag.expired() || !tag.lock()->IsTechSupported(KITS::TagTechnology::NFC_NDEF_FORMATABLE_TECH)) { in GetTag()
H A Dndef_tag.cpp40 if (tag.expired() || !tag.lock()->IsTechSupported(KITS::TagTechnology::NFC_NDEF_TECH)) { in GetTag()
H A Diso15693_tag.cpp41 if (tag.expired() || !tag.lock()->IsTechSupported(KITS::TagTechnology::NFC_V_TECH)) { in GetTag()
/ohos5.0/foundation/communication/nfc/test/unittest/services/tags_test/
H A Dtag_info_test.cpp94 bool supported = tagInfo_->IsTechSupported(TagTechnology::NFC_A_TECH);
104 bool supported = tagInfo_->IsTechSupported(TagTechnology::NFC_ISODEP_TECH);
114 bool supported = tagInfo_->IsTechSupported(TagTechnology::NFC_NDEF_TECH);
/ohos5.0/foundation/communication/nfc/test/fuzztest/tags_test/taginfo/istechsupported_fuzzer/
H A Distechsupported_fuzzer.cpp66 tagInfo->IsTechSupported(tech); in FuzzIsTechSupported()
/ohos5.0/foundation/communication/nfc/interfaces/inner_api/common/
H A Dtaginfo.h71 bool IsTechSupported(KITS::TagTechnology tech);
H A Dtaginfo.cpp45 bool TagInfo::IsTechSupported(KITS::TagTechnology tech) in IsTechSupported() function in OHOS::NFC::KITS::TagInfo