Home
last modified time | relevance | path

Searched refs:Transceive (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/foundation/communication/nfc/services/src/nci_adapter/
H A Dnci_tag_proxy.cpp137 int NciTagProxy::Transceive(uint32_t tagDiscId, const std::string& command, std::string& response) in Transceive() function in OHOS::NFC::NCI::NciTagProxy
140 return nciTagInterface_->Transceive(tagDiscId, command, response); in Transceive()
H A Dnci_tag_proxy.h89 int Transceive(uint32_t tagDiscId, const std::string& command, std::string& response) override;
/ohos5.0/foundation/communication/nfc/services/src/nci_adapter/nci_native_default/src/
H A Dnci_tag_impl_default.cpp91 int NciTagImplDefault::Transceive(uint32_t tagDiscId, const std::string &command, std::string &resp… in Transceive() function in OHOS::NFC::NCI::NciTagImplDefault
95 return tag->Transceive(command, response); in Transceive()
H A Dtag_host.cpp125 int TagHost::Transceive(const std::string& request, std::string& response) in Transceive() function in OHOS::NFC::NCI::TagHost
130 int status = TagNciAdapterRw::GetInstance().Transceive(request, response); in Transceive()
658 TagNciAdapterRw::GetInstance().Transceive(command, response); in IsUltralightC()
H A Dtag_nci_adapter_rw.cpp430 int TagNciAdapterRw::Transceive(const std::string& request, std::string& response) in Reselect() function in OHOS::NFC::NCI::TagNciAdapterRw
709 Transceive(hexRequest, response); in Reselect()
H A Dtag_nci_adapter.cpp624 int TagNciAdapter::Transceive(const std::string& request, std::string& response) in Transceive() function in OHOS::NFC::NCI::TagNciAdapter
1681 Transceive(hexRequest, response); in IsNdefFormattable()
/ohos5.0/foundation/communication/nfc/services/src/tag/
H A Disodep_card_handler.cpp204 nciTagProxy_.lock()->Transceive(rfDiscId, checkCmdApdu, rspApdu); in MatchCity()
261 nciTagProxy_.lock()->Transceive(rfDiscId, getBalanceCmdApdu, rspApdu); in GetBalance()
/ohos5.0/foundation/communication/nfc/interfaces/inner_api/common/
H A Dinci_tag_interface.h97 … virtual int Transceive(uint32_t tagDiscId, const std::string& command, std::string& response) = 0;
/ohos5.0/foundation/communication/nfc/services/src/nci_adapter/nci_native_default/include/
H A Dnci_tag_impl_default.h35 int Transceive(uint32_t tagDiscId, const std::string &command, std::string &response) override;
H A Dtag_nci_adapter_rw.h49 int Transceive(const std::string& request, std::string& response);
H A Dtag_host.h73 int Transceive(const std::string& request, std::string& response);
H A Dtag_nci_adapter.h73 int Transceive(const std::string& request, std::string& response);
/ohos5.0/foundation/communication/nfc/test/unittest/services/nci_adapter_test/
H A Dtag_host_test.cpp77 tag_->Transceive(req, res);
H A Dtag_nci_adapter_test.cpp130 EXPECT_TRUE(adapterObj->Transceive(request, response) == NFA_STATUS_BUSY);
/ohos5.0/foundation/communication/nfc/test/unittest/services/nci_tag_proxy_test/
H A Dnci_tag_proxy_test.cpp171 int transceive = nciTagProxy->Transceive(tagDiscId, command, response);
/ohos5.0/foundation/communication/nfc/test/fuzztest/services_test/nci_adapter_test/ncitagproxy/ncitagproxy_fuzzer/
H A Dncitagproxy_fuzz.cpp116 nciTagProxy->Transceive(tagDiscId[0], command, response); in FuzzTransceive()
/ohos5.0/foundation/communication/nfc/services/src/ipc/tags/
H A Dtag_session.cpp263 int result = nciTagProxy_.lock()->Transceive(tagRfDiscId, hexCmdData, hexRespData); in SendRawFrame()