Home
last modified time | relevance | path

Searched refs:nciTagProxy (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/communication/nfc/test/unittest/services/nci_tag_proxy_test/
H A Dnci_tag_proxy_test.cpp62 nciTagProxy->SetTagListener(listener);
116 std::string getTagUid = nciTagProxy->GetTagUid(tagDiscId);
130 bool connect = nciTagProxy->Connect(tagDiscId, technology);
143 bool disconnect = nciTagProxy->Disconnect(tagDiscId);
156 bool reconnect = nciTagProxy->Reconnect(tagDiscId);
184 std::string readNdef = nciTagProxy->ReadNdef(tagDiscId);
211 bool writeNdef = nciTagProxy->WriteNdef(tagDiscId, command);
225 bool formatNdef = nciTagProxy->FormatNdef(tagDiscId, key);
278 bool isTagFieldOn = nciTagProxy->IsTagFieldOn(tagDiscId);
292 nciTagProxy->StartFieldOnChecking(tagDiscId, delayedMs);
[all …]
/ohos5.0/foundation/communication/nfc/test/fuzztest/services_test/nci_adapter_test/ncitagproxy/ncitagproxy_fuzzer/
H A Dncitagproxy_fuzz.cpp45 nciTagProxy->SetTagListener(listener); in FuzzSetTagListener()
53 nciTagProxy->GetTechList(tagDiscId[0]); in FuzzGetTechList()
61 nciTagProxy->GetConnectedTech(tagDiscId[0]); in FuzzGetConnectedTech()
77 nciTagProxy->GetTagUid(tagDiscId[0]); in FuzzGetTagUid()
98 nciTagProxy->Disconnect(tagDiscId[0]); in FuzzDisconnect()
106 nciTagProxy->Reconnect(tagDiscId[0]); in FuzzReconnect()
124 nciTagProxy->ReadNdef(tagDiscId[0]); in FuzzReadNdef()
132 nciTagProxy->FindNdefTech(tagDiscId[0]); in FuzzFindNdefTech()
158 nciTagProxy->CanMakeReadOnly(ndefType[0]); in FuzzCanMakeReadOnly()
183 nciTagProxy->IsTagFieldOn(tagDiscId[0]); in FuzzIsTagFieldOn()
[all …]
/ohos5.0/foundation/communication/nfc/test/fuzztest/services_test/nfcpollingmanager_test/nfcpollingmanager/nfcpollingmanager_fuzzer/
H A Dnfcpollingmanager_fuzzer.cpp43 std::weak_ptr<NCI::INciTagInterface> nciTagProxy; in FuzzStartPollingLoop() local
45 std::make_shared<NfcPollingManager>(nfcService, nciNfccProxy, nciTagProxy); in FuzzStartPollingLoop()
54 std::weak_ptr<NCI::INciTagInterface> nciTagProxy; in FuzzEnableForegroundDispatch() local
56 std::make_shared<NfcPollingManager>(nfcService, nciNfccProxy, nciTagProxy); in FuzzEnableForegroundDispatch()
67 std::weak_ptr<NCI::INciTagInterface> nciTagProxy; in FuzzDisableForegroundDispatch() local
69 std::make_shared<NfcPollingManager>(nfcService, nciNfccProxy, nciTagProxy); in FuzzDisableForegroundDispatch()
78 std::weak_ptr<NCI::INciTagInterface> nciTagProxy; in FuzzDisableForegroundByDeathRcpt() local
88 std::weak_ptr<NCI::INciTagInterface> nciTagProxy; in FuzzIsForegroundEnabled() local
98 std::weak_ptr<NCI::INciTagInterface> nciTagProxy; in FuzzSendTagToForeground() local
108 std::weak_ptr<NCI::INciTagInterface> nciTagProxy; in FuzzIsReaderModeEnabled() local
[all …]
/ohos5.0/foundation/communication/nfc/test/unittest/services/isodep_card_handler_test/
H A Disodep_card_handler_test.cpp60 std::shared_ptr<NCI::INciTagInterface> nciTagProxy = nullptr; variable
61 …shared_ptr<IsodepCardHandler> isodepCardHandler = std::make_shared<IsodepCardHandler>(nciTagProxy);
73 std::shared_ptr<NCI::INciTagInterface> nciTagProxy = nullptr; variable
76 …shared_ptr<IsodepCardHandler> isodepCardHandler = std::make_shared<IsodepCardHandler>(nciTagProxy);
88 std::shared_ptr<NCI::INciTagInterface> nciTagProxy = nullptr; variable
92 …shared_ptr<IsodepCardHandler> isodepCardHandler = std::make_shared<IsodepCardHandler>(nciTagProxy);
104 std::shared_ptr<NCI::INciTagInterface> nciTagProxy = nullptr; variable
107 …shared_ptr<IsodepCardHandler> isodepCardHandler = std::make_shared<IsodepCardHandler>(nciTagProxy);
/ohos5.0/foundation/communication/nfc/test/fuzztest/services_test/isodepcardhandler_test/isodepcardhandler/isodepcardhandler_fuzzer/
H A Disodepcardhandler_fuzzer.cpp41 std::weak_ptr<INciTagInterface> nciTagProxy; in FuzzInitTransportCardInfo() local
42 …shared_ptr<IsodepCardHandler> isodepCardHandler = std::make_shared<IsodepCardHandler>(nciTagProxy); in FuzzInitTransportCardInfo()
50 std::weak_ptr<INciTagInterface> nciTagProxy; in FuzzGetCardName() local
51 …shared_ptr<IsodepCardHandler> isodepCardHandler = std::make_shared<IsodepCardHandler>(nciTagProxy); in FuzzGetCardName()
/ohos5.0/foundation/communication/nfc/services/src/
H A Dnfc_polling_manager.cpp26 std::weak_ptr<NCI::INciTagInterface> nciTagProxy) in NfcPollingManager() argument
27 : nfcService_(nfcService), nciNfccProxy_(nciNfccProxy), nciTagProxy_(nciTagProxy) in NfcPollingManager()
/ohos5.0/foundation/communication/nfc/services/src/tag/
H A Disodep_card_handler.cpp26 IsodepCardHandler::IsodepCardHandler(std::weak_ptr<NCI::INciTagInterface> nciTagProxy) in IsodepCardHandler() argument
27 : nciTagProxy_(nciTagProxy) in IsodepCardHandler()
H A Dndef_har_data_parser.cpp38 NdefHarDataParser::NdefHarDataParser(std::weak_ptr<NCI::INciTagInterface> nciTagProxy) in NdefHarDataParser() argument
39 : nciTagProxy_(nciTagProxy) in NdefHarDataParser()
/ohos5.0/foundation/communication/nfc/services/include/
H A Disodep_card_handler.h53 explicit IsodepCardHandler(std::weak_ptr<NCI::INciTagInterface> nciTagProxy);
H A Dndef_har_data_parser.h31 NdefHarDataParser(std::weak_ptr<NCI::INciTagInterface> nciTagProxy);
H A Dnfc_polling_manager.h35 std::weak_ptr<NCI::INciTagInterface> nciTagProxy);
/ohos5.0/foundation/communication/nfc/test/unittest/services/services_test/
H A Dnfc_event_handler_test.cpp130 std::weak_ptr<NCI::INciTagInterface> nciTagProxy; variable
132 std::make_shared<NfcPollingManager>(service, nciNfccProxy, nciTagProxy);