/foundation/CastEngine/castengine_wifi_display/services/interaction/domain/rpc/ |
H A D | domain_rpc_service_stub.cpp | 117 std::shared_ptr<BaseDomainMsg> msg = nullptr; in DoRpcCommand() 124 std::shared_ptr<BaseDomainMsg> replyMsg = std::make_shared<BaseDomainMsg>(); in DoRpcCommand() 139 int32_t DomainRpcServiceStub::DoRpcCommand(std::shared_ptr<BaseDomainMsg> msg, std::shared_ptr<BaseDomainMsg> replyMsg) in DoRpcCommand()
|
H A D | domain_rpc_service.h | 44 int32_t SendDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> msg) final; 45 int32_t DoRpcCommand(std::shared_ptr<BaseDomainMsg> msg, std::shared_ptr<BaseDomainMsg> replyMsg) final;
|
H A D | domain_rpc_service_stub.h | 30 virtual void OnDomainRequest(std::shared_ptr<BaseDomainMsg> msg) = 0; 41 int32_t DoRpcCommand(std::shared_ptr<BaseDomainMsg> msg, std::shared_ptr<BaseDomainMsg> replyMsg) override;
|
H A D | domain_rpc_client.cpp | 157 int32_t DomainRpcClient::SendDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> BaseMsg) in SendDomainRequest() 160 std::shared_ptr<BaseDomainMsg> replyMsg = std::make_shared<BaseDomainMsg>(); in SendDomainRequest() 170 void DomainRpcClient::OnDomainRequest(std::shared_ptr<BaseDomainMsg> msg) in OnDomainRequest()
|
H A D | domain_rpc_service_proxy.h | 31 int32_t DoRpcCommand(std::shared_ptr<BaseDomainMsg> msg, std::shared_ptr<BaseDomainMsg> replyMsg) override;
|
H A D | i_domain_rpc_service.h | 34 virtual int32_t DoRpcCommand(std::shared_ptr<BaseDomainMsg> msg, std::shared_ptr<BaseDomainMsg> replyMsg) = 0;
|
H A D | domain_rpc_manager.h | 35 int32_t SendDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> BaseMsg) override; 44 void OnDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> BaseMsg) final;
|
H A D | domain_rpc_client.h | 41 void OnDomainRequest(std::shared_ptr<BaseDomainMsg> msg) final; 50 int32_t SendDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> BaseMsg) final;
|
H A D | domain_rpc_service.cpp | 86 int32_t DomainRpcService::DoRpcCommand(std::shared_ptr<BaseDomainMsg> msg, std::shared_ptr<BaseDomainMsg> replyMsg) in DoRpcCommand() 123 int32_t DomainRpcService::SendDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> msg) in SendDomainRequest()
|
H A D | domain_rpc_service_proxy.cpp | 65 int32_t DomainRpcServiceProxy::DoRpcCommand(std::shared_ptr<BaseDomainMsg> msg, std::shared_ptr<BaseDomainMsg> replyMsg) in DoRpcCommand()
|
H A D | domain_rpc_manager.cpp | 42 int32_t DomainRpcManager::SendDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> BaseMsg) in SendDomainRequest() 158 void DomainRpcManager::OnDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> BaseMsg) in OnDomainRequest()
|
/foundation/CastEngine/castengine_wifi_display/services/interaction/domain/ |
H A D | domain_def.h | 39 virtual void OnDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> BaseMsg) = 0; 80 virtual int32_t SendDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> BaseMsg) = 0; 99 virtual void OnDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> BaseMsg) = 0; 119 virtual int32_t SendDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> BaseMsg) = 0;
|
H A D | domain_manager.h | 34 virtual int32_t OnDomainMsg(std::shared_ptr<BaseDomainMsg> msg) = 0; 46 void OnDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> BaseMsg) override; 50 int32_t SendDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> BaseMsg);
|
H A D | domain_manager.cpp | 42 int32_t DomainManager::SendDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> BaseMsg) in SendDomainRequest() 64 void DomainManager::OnDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> BaseMsg) in OnDomainRequest()
|
/foundation/CastEngine/castengine_wifi_display/services/interaction/ipc_codec/ |
H A D | ipc_msg_decoder.cpp | 29 int32_t IpcMsgDecoder::DomainMsgDecode(std::shared_ptr<BaseDomainMsg> &sharingMsg, MessageParcel &ipcMsg) in DomainMsgDecode() 39 sharingMsg = std::static_pointer_cast<BaseDomainMsg>(reply); in DomainMsgDecode()
|
H A D | ipc_msg.h | 35 struct BaseDomainMsg : public BaseMsg { struct
|
H A D | ipc_msg_decoder.h | 34 int32_t DomainMsgDecode(std::shared_ptr<BaseDomainMsg> &sharingMsg, MessageParcel &ipcMsg);
|
H A D | ipc_msg_encoder.h | 34 int32_t DomainMsgEncode(MessageParcel &ipcMsg, std::shared_ptr<BaseDomainMsg> &sharingMsg);
|
H A D | ipc_msg_encoder.cpp | 31 int32_t IpcMsgEncoder::DomainMsgEncode(MessageParcel &ipcMsg, std::shared_ptr<BaseDomainMsg> &sharingMsg) in DomainMsgEncode()
|
/foundation/CastEngine/castengine_wifi_display/tests/unittest/interaction/domain/ |
H A D | domain_unit_test.cpp | 50 int32_t OnDomainMsg(std::shared_ptr<BaseDomainMsg> msg) in OnDomainMsg() 67 void OnDomainRequest(std::string remoteId, std::shared_ptr<BaseDomainMsg> baseMsg) in OnDomainRequest() 84 void OnDomainRequest(std::shared_ptr<BaseDomainMsg> msg) in OnDomainRequest() 109 auto baseMsg = std::make_shared<BaseDomainMsg>(); in HWTEST_F() 133 auto baseMsg = std::make_shared<BaseDomainMsg>(); in HWTEST_F() 186 auto msg = std::make_shared<BaseDomainMsg>(); in HWTEST_F() 238 auto msg = std::make_shared<BaseDomainMsg>(); in HWTEST_F() 300 auto msg = std::make_shared<BaseDomainMsg>(); in HWTEST_F() 358 auto msg = std::make_shared<BaseDomainMsg>(); in HWTEST_F() 438 auto msg = std::make_shared<BaseDomainMsg>(); in HWTEST_F() [all...] |
/foundation/CastEngine/castengine_wifi_display/services/interaction/ |
H A D | interaction_manager.h | 64 int32_t SendDomainMsg(std::shared_ptr<BaseDomainMsg> msg); 65 int32_t OnDomainMsg(std::shared_ptr<BaseDomainMsg> msg) override;
|
H A D | interaction.h | 83 void OnDomainMsg(std::shared_ptr<BaseDomainMsg> &msg); 84 void ForwardDomainMsg(std::shared_ptr<BaseDomainMsg> &msg) override;
|
H A D | interaction_manager.cpp | 152 int32_t InteractionManager::OnDomainMsg(std::shared_ptr<BaseDomainMsg> msg) in OnDomainMsg() 157 int32_t InteractionManager::SendDomainMsg(std::shared_ptr<BaseDomainMsg> msg) in SendDomainMsg()
|
/foundation/CastEngine/castengine_wifi_display/services/interaction/scene/ |
H A D | base_scene.h | 65 virtual void OnDomainMsg(std::shared_ptr<BaseDomainMsg> &msg) = 0;
|
/foundation/CastEngine/castengine_wifi_display/tests/unittest/impl/scene/mock/ |
H A D | mock_sharing_adapter.h | 35 MOCK_METHOD(void, ForwardDomainMsg, (std::shared_ptr<BaseDomainMsg> &msg));
|