Searched refs:hceSession (Results 1 - 6 of 6) sorted by relevance
/foundation/communication/nfc/interfaces/inner_api/cardEmulation/ |
H A D | hce_service.cpp | 49 OHOS::sptr<HCE::IHceSession> hceSession = GetHceSessionProxy(); in RegHceCmdCallback() local 50 if (hceSession == nullptr) { in RegHceCmdCallback() 54 return hceSession->RegHceCmdCallback(callback, type); in RegHceCmdCallback() 59 OHOS::sptr<HCE::IHceSession> hceSession = GetHceSessionProxy(); in StopHce() local 60 if (hceSession == nullptr) { in StopHce() 64 return hceSession->StopHce(element); in StopHce() 69 OHOS::sptr<HCE::IHceSession> hceSession = GetHceSessionProxy(); in IsDefaultService() local 70 if (hceSession == nullptr) { in IsDefaultService() 74 return hceSession->IsDefaultService(element, type, isDefaultService); in IsDefaultService() 79 OHOS::sptr<HCE::IHceSession> hceSession in SendRawFrame() local 89 OHOS::sptr<HCE::IHceSession> hceSession = GetHceSessionProxy(); GetPaymentServices() local 100 OHOS::sptr<HCE::IHceSession> hceSession = GetHceSessionProxy(); StartHce() local [all...] |
/foundation/communication/nfc/test/fuzztest/services_test/hcesession_test/hcesession/hcesession_fuzzer/ |
H A D | hcesession_fuzzer.cpp | 43 std::shared_ptr<HceSession> hceSession = std::make_shared<HceSession>(service); in FuzzIsDefaultService() local 47 hceSession->IsDefaultService(element, type, isDefaultService); in FuzzIsDefaultService() 53 std::shared_ptr<HceSession> hceSession = std::make_shared<HceSession>(service); in FuzzStartHce() local 57 hceSession->StartHce(element, aids); in FuzzStartHce() 63 std::shared_ptr<HceSession> hceSession = std::make_shared<HceSession>(service); in FuzzStopHce() local 66 hceSession->StopHce(element, callerToken); in FuzzStopHce() 72 std::shared_ptr<HceSession> hceSession = std::make_shared<HceSession>(service); in FuzzRegHceCmdCallbackByToken() local 76 hceSession->RegHceCmdCallbackByToken(callback, type, callerToken); in FuzzRegHceCmdCallbackByToken() 82 std::shared_ptr<HceSession> hceSession = std::make_shared<HceSession>(service); in FuzzUnRegHceCmdCallback() local 85 hceSession in FuzzUnRegHceCmdCallback() 91 std::shared_ptr<HceSession> hceSession = std::make_shared<HceSession>(service); FuzzUnRegAllCallback() local 99 std::shared_ptr<HceSession> hceSession = std::make_shared<HceSession>(service); FuzzHandleWhenRemoteDie() local [all...] |
/foundation/communication/nfc/test/unittest/services/hce_session_test/ |
H A D | hce_session_test.cpp | 63 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); in HWTEST_F() local 65 KITS::ErrorCode regHceCmdCallback = hceSession->RegHceCmdCallbackByToken(callback, type, callerToken); in HWTEST_F() 80 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); in HWTEST_F() local 82 KITS::ErrorCode regHceCmdCallback = hceSession->RegHceCmdCallbackByToken(callback, type, callerToken); in HWTEST_F() 97 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); in HWTEST_F() local 99 int sendRawFrame = hceSession->SendRawFrameByToken(hexCmdData, raw, hexRespData, callerToken); in HWTEST_F() 115 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); in HWTEST_F() local 117 int sendRawFrame = hceSession->SendRawFrameByToken(hexCmdData, raw, hexRespData, callerToken); in HWTEST_F() 131 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); in HWTEST_F() local 132 int dump = hceSession in HWTEST_F() 146 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); HWTEST_F() local 162 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); HWTEST_F() local 176 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); HWTEST_F() local 191 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); HWTEST_F() local 207 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); HWTEST_F() local 224 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); HWTEST_F() local 238 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); HWTEST_F() local 253 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); HWTEST_F() local 268 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); HWTEST_F() local 284 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); HWTEST_F() local 299 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); HWTEST_F() local 317 std::shared_ptr<HCE::HceSession> hceSession = std::make_shared<HCE::HceSession>(nfcService); HWTEST_F() local [all...] |
/foundation/communication/nfc/services/src/ipc/card_emulation/ |
H A D | hce_cmd_death_recipient.cpp | 24 sptr<HCE::HceSessionStub> hceSession, in HceCmdDeathRecipient() 26 : hceSession_(hceSession), callerToken_(callerToken) {} in HceCmdDeathRecipient() 23 HceCmdDeathRecipient( sptr<HCE::HceSessionStub> hceSession, Security::AccessToken::AccessTokenID callerToken) HceCmdDeathRecipient() argument
|
H A D | hce_cmd_death_recipient.h | 26 explicit HceCmdDeathRecipient(sptr<HCE::HceSessionStub> hceSession,
|
/foundation/communication/nfc/test/fuzztest/cardemulation_test/hcesessionstub/hcesessionstub_fuzzer/ |
H A D | hcesessionstub_fuzzer.cpp | 79 std::shared_ptr<NFC::HCE::HceSession> hceSession = std::make_shared<NFC::HCE::HceSession>(nfcService); in DoHceSessionStubFuzzTest() local 80 hceSession->OnRemoteRequest(code, datas, reply, option); in DoHceSessionStubFuzzTest()
|
Completed in 5 milliseconds