/foundation/communication/nfc/services/src/nci_adapter/ |
H A D | nci_ce_proxy.cpp | 67 bool NciCeProxy::SendRawFrame(std::string &hexCmdData) in SendRawFrame() function in OHOS::NFC::NCI::NciCeProxy 70 return nciCeInterface_->SendRawFrame(hexCmdData); in SendRawFrame()
|
H A D | nci_ce_proxy.h | 50 bool SendRawFrame(std::string &hexCmdData) override;
|
/foundation/communication/nfc/services/src/nci_adapter/nci_native_default/src/ |
H A D | nci_ce_impl_default.cpp | 46 bool NciCeImplDefault::SendRawFrame(std::string &hexCmdData) in SendRawFrame() function in OHOS::NFC::NCI::NciCeImplDefault 48 return NfccNciAdapter::GetInstance().SendRawFrame(hexCmdData); in SendRawFrame()
|
/foundation/communication/nfc/interfaces/inner_api/cardEmulation/ |
H A D | hce_service.cpp | 76 int HceService::SendRawFrame(std::string hexCmdData, bool raw, std::string &hexRespData) in SendRawFrame() function in OHOS::NFC::KITS::HceService 78 DebugLog("HceService::SendRawFrame"); in SendRawFrame() 81 ErrorLog("HceService::SendRawFrame, ERR_HCE_STATE_UNBIND"); in SendRawFrame() 84 return hceSession->SendRawFrame(hexCmdData, raw, hexRespData); in SendRawFrame()
|
H A D | hce_service.h | 39 int SendRawFrame(std::string hexCmdData, bool raw, std::string &hexRespData);
|
H A D | hce_session_proxy.h | 41 int SendRawFrame(std::string hexCmdData, bool raw, std::string &hexRespData) override;
|
H A D | hce_session_proxy.cpp | 68 int HceSessionProxy::SendRawFrame(std::string hexCmdData, bool raw, std::string &hexRespData) in SendRawFrame() function in OHOS::NFC::HCE::HceSessionProxy
|
/foundation/communication/nfc/services/src/nci_adapter/nci_native_default/include/ |
H A D | nci_ce_impl_default.h | 30 bool SendRawFrame(std::string &hexCmdData) override;
|
H A D | nfcc_nci_adapter.h | 86 bool SendRawFrame(std::string& rawData);
|
/foundation/communication/nfc/interfaces/inner_api/common/ |
H A D | inci_ce_interface.h | 82 virtual bool SendRawFrame(std::string &hexCmdData) = 0;
|
H A D | ihce_session.h | 50 virtual int SendRawFrame(std::string hexCmdData, bool raw, std::string &hexRespData) = 0;
|
H A D | itag_session.h | 105 virtual int SendRawFrame(const int tagRfDiscId, std::string hexCmdData, bool raw, std::string &hexRespData) = 0;
|
/foundation/communication/nfc/interfaces/inner_api/tags/ |
H A D | tag_session_proxy.h | 45 int SendRawFrame(const int tagRfDiscId, std::string hexCmdData, bool raw, std::string &hexRespData) override;
|
H A D | basic_tag_session.cpp | 141 return tagSession->SendRawFrame(GetTagRfDiscId(), hexCmdData, raw, hexRespData); in SendCommand()
|
H A D | tag_session_proxy.cpp | 165 int TagSessionProxy::SendRawFrame(const int tagRfDiscId, std::string hexCmdData, bool raw, std::string &hexRespData) in SendRawFrame() function in OHOS::NFC::TAG::TagSessionProxy 181 InfoLog("TagSessionProxy::SendRawFrame, statusCode=0x%{public}X", statusCode); in SendRawFrame()
|
/foundation/communication/nfc/test/unittest/services/nci_adapter_test/ |
H A D | nfcc_nci_adapter_test.cpp | 68 adapterObj.SendRawFrame(rawData); in HWTEST_F()
|
/foundation/communication/nfc/services/src/card_emulation/ |
H A D | host_card_emulation_manager.cpp | 194 nciCeProxy_.lock()->SendRawFrame(unknowError); in HandleDataOnW4Select() 344 return nciCeProxy_.lock()->SendRawFrame(hexCmdData); in SendHostApduData() 425 nciCeProxy_.lock()->SendRawFrame(aidNotFound); in DispatchAbilitySingleApp()
|
/foundation/communication/nfc/services/src/ipc/card_emulation/ |
H A D | hce_session_stub.h | 72 int SendRawFrame(std::string hexCmdData, bool raw, std::string& hexRespData) override;
|
H A D | hce_session_stub.cpp | 114 int statusCode = SendRawFrame(hexCmdData, raw, hexRespData); in HandleSendRawFrame() 257 int HceSessionStub::SendRawFrame(std::string hexCmdData, bool raw, std::string &hexRespData) in SendRawFrame() function in OHOS::NFC::HCE::HceSessionStub
|
/foundation/communication/nfc/test/unittest/services/nci_ce_proxy_test/ |
H A D | nci_ce_proxy_test.cpp | 94 * @tc.desc: Test NciCeProxyTest SendRawFrame. 101 bool sendRawFrame = nciCeProxy->SendRawFrame(hexCmdData); in HWTEST_F()
|
/foundation/communication/nfc/test/fuzztest/services_test/cardemulation_test/hceservice/hceservice_fuzzer/ |
H A D | hceservice_fuzzer.cpp | 85 HceService::GetInstance().SendRawFrame(hexCmdData, raw, hexRespData); in FuzzSendRawFrame()
|
/foundation/communication/nfc/test/unittest/services/hce_service_test/ |
H A D | hce_service_test.cpp | 94 int ret = HceService::GetInstance().SendRawFrame(hexCmdData, true, hexRespData); in HWTEST_F()
|
/foundation/communication/nfc/services/src/ipc/tags/ |
H A D | tag_session.h | 141 int SendRawFrame(const int tagRfDiscId, std::string hexCmdData, bool raw, std::string &hexRespData) override;
|
/foundation/communication/nfc/test/unittest/services/services_tags_test/ |
H A D | tag_session_test.cpp | 456 * @tc.desc: Test TagSession SendRawFrame.
467 int result = tagSession->SendRawFrame(tagRfDiscId, hexCmdData, raw, hexRespData);
in HWTEST_F() 472 * @tc.desc: Test TagSession SendRawFrame.
484 int result = tagSession->SendRawFrame(tagRfDiscId, hexCmdData, raw, hexRespData);
in HWTEST_F()
|
/foundation/communication/nfc/frameworks/js/napi/cardEmulation/ |
H A D | nfc_napi_hce_adapter.cpp | 401 context->errorCode = hceService.SendRawFrame(context->dataBytes, true, hexRespData); in NativeTransmit()
|