Home
last modified time | relevance | path

Searched refs:replyMsg (Results 1 - 25 of 28) sorted by relevance

12

/foundation/CastEngine/castengine_wifi_display/frameworks/innerkitsimpl/native/wfd/
H A Dwfd_sink_impl.cpp91 auto replyMsg = std::static_pointer_cast<GetSinkConfigRsp>(reply); in GetSinkConfig() local
92 if (replyMsg->foregroundMaximum == INVALID_ID) { in GetSinkConfig()
97 sinkConfig.accessDevMaximum = replyMsg->accessDevMaximum; in GetSinkConfig()
98 sinkConfig.foregroundMaximum = replyMsg->foregroundMaximum; in GetSinkConfig()
99 sinkConfig.surfaceMaximum = replyMsg->surfaceMaximum; in GetSinkConfig()
143 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); in AppendSurface() local
144 return replyMsg->ret; in AppendSurface()
166 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); in RemoveSurface() local
167 return replyMsg->ret; in RemoveSurface()
186 auto replyMsg in Start() local
206 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); Stop() local
230 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); SetMediaFormat() local
251 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); Play() local
272 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); Pause() local
293 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); Close() local
317 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); SetSceneType() local
338 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); Mute() local
359 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); UnMute() local
[all...]
H A Dwfd_source_impl.cpp85 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); in StartDiscover() local
86 return replyMsg->ret; in StartDiscover()
105 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(replyStopDiscoveryReq); in StopDiscover() local
106 return replyMsg->ret; in StopDiscover()
156 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); in RemoveDevice() local
157 return replyMsg->ret; in RemoveDevice()
/foundation/CastEngine/castengine_wifi_display/tests/unittest/interaction/interprocess/
H A Dinterprocess_unit_test.cpp130 auto replyMsg = std::make_shared<BaseMsg>(); in HWTEST_F() local
131 EXPECT_NE(replyMsg, nullptr); in HWTEST_F()
132 auto ret = ipcClient->DoIpcCommand(msg, replyMsg); in HWTEST_F()
217 auto replyMsg = std::make_shared<BaseMsg>(); in HWTEST_F() local
218 EXPECT_NE(replyMsg, nullptr); in HWTEST_F()
225 auto replyMsg = std::make_shared<BaseMsg>(); in HWTEST_F() local
226 EXPECT_NE(replyMsg, nullptr); in HWTEST_F()
296 auto replyMsg = std::make_shared<BaseMsg>(); in HWTEST_F() local
297 EXPECT_NE(replyMsg, nullptr); in HWTEST_F()
298 auto ret = ipcProxy->DoIpcCommand(msg, replyMsg); in HWTEST_F()
380 auto replyMsg = std::make_shared<BaseMsg>(); HWTEST_F() local
487 auto replyMsg = std::make_shared<BaseMsg>(); HWTEST_F() local
509 auto replyMsg = std::make_shared<BaseMsg>(); HWTEST_F() local
615 auto replyMsg = std::make_shared<BaseMsg>(); HWTEST_F() local
633 auto replyMsg = std::make_shared<BaseMsg>(); HWTEST_F() local
645 auto replyMsg = std::make_shared<BaseMsg>(); HWTEST_F() local
665 auto replyMsg = std::make_shared<BaseMsg>(); HWTEST_F() local
[all...]
/foundation/CastEngine/castengine_wifi_display/services/interaction/interprocess/
H A Dinter_ipc_stub.cpp94 std::shared_ptr<BaseMsg> replyMsg = std::make_shared<BaseMsg>(); in DoIpcCommand() local
95 DoIpcCommand(msg, replyMsg); in DoIpcCommand()
96 IpcMsgEncoder::GetInstance().MsgEncode(reply, replyMsg); in DoIpcCommand()
120 int32_t InterIpcStub::DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) in DoIpcCommand() argument
125 listener->OnIpcRequest(msg, replyMsg); in DoIpcCommand()
H A Dinter_ipc_client_stub.cpp65 int32_t InterIpcClientStub::DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) in DoIpcCommand() argument
70 listener->OnIpcRequest(msg, replyMsg); in DoIpcCommand()
H A Dinter_ipc_sub_stub.cpp34 int32_t InterIpcSubStub::DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) in DoIpcCommand() argument
39 listener->OnIpcRequest(msg, replyMsg); in DoIpcCommand()
H A Dinter_ipc_proxy.cpp66 int32_t InterIpcProxy::DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) in DoIpcCommand() argument
80 IpcMsgDecoder::GetInstance().MsgDecode(replyMsg, reply); in DoIpcCommand()
H A Dinter_ipc_sub_stub.h32 int32_t DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) override;
H A Dinter_ipc_client_stub.h31 int32_t DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) override;
H A Dinter_ipc_service_stub.cpp69 int32_t InterIpcServiceStub::DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) in DoIpcCommand() argument
73 (void)replyMsg; in DoIpcCommand()
H A Dinter_ipc_service_stub.h33 int32_t DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) override;
H A Di_inter_ipc.h34 virtual int32_t DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) = 0;
H A Dinter_ipc_proxy.h31 int32_t DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) override;
H A Dinter_ipc_stub.h48 int32_t DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) override;
/foundation/CastEngine/castengine_wifi_display/services/interaction/domain/rpc/
H A Ddomain_rpc_service_stub.cpp124 std::shared_ptr<BaseDomainMsg> replyMsg = std::make_shared<BaseDomainMsg>(); in DoRpcCommand() local
125 DoRpcCommand(msg, replyMsg); in DoRpcCommand()
139 int32_t DomainRpcServiceStub::DoRpcCommand(std::shared_ptr<BaseDomainMsg> msg, std::shared_ptr<BaseDomainMsg> replyMsg) in DoRpcCommand() argument
H A Ddomain_rpc_service.cpp86 int32_t DomainRpcService::DoRpcCommand(std::shared_ptr<BaseDomainMsg> msg, std::shared_ptr<BaseDomainMsg> replyMsg) in DoRpcCommand() argument
89 (void)replyMsg; in DoRpcCommand()
H A Ddomain_rpc_client.cpp160 std::shared_ptr<BaseDomainMsg> replyMsg = std::make_shared<BaseDomainMsg>(); in SendDomainRequest() local
162 domainProxy_->DoRpcCommand(BaseMsg, replyMsg); in SendDomainRequest()
H A Ddomain_rpc_service_proxy.h31 int32_t DoRpcCommand(std::shared_ptr<BaseDomainMsg> msg, std::shared_ptr<BaseDomainMsg> replyMsg) override;
H A Di_domain_rpc_service.h34 virtual int32_t DoRpcCommand(std::shared_ptr<BaseDomainMsg> msg, std::shared_ptr<BaseDomainMsg> replyMsg) = 0;
H A Ddomain_rpc_service.h45 int32_t DoRpcCommand(std::shared_ptr<BaseDomainMsg> msg, std::shared_ptr<BaseDomainMsg> replyMsg) final;
H A Ddomain_rpc_service_stub.h41 int32_t DoRpcCommand(std::shared_ptr<BaseDomainMsg> msg, std::shared_ptr<BaseDomainMsg> replyMsg) override;
/foundation/communication/dsoftbus/core/transmission/trans_channel/udp_negotiation/src/
H A Dtrans_udp_negotiation.c411 static int32_t SendUdpInfo(cJSON *replyMsg, AuthHandle authHandle, int64_t seq) in SendUdpInfo() argument
413 char *msgStr = cJSON_PrintUnformatted(replyMsg); in SendUdpInfo()
433 cJSON *replyMsg = cJSON_CreateObject(); in SendReplyErrInfo() local
434 TRANS_CHECK_AND_RETURN_RET_LOGE(replyMsg != NULL, SOFTBUS_CREATE_JSON_ERR, in SendReplyErrInfo()
436 int32_t ret = TransPackReplyErrInfo(replyMsg, errCode, errDesc); in SendReplyErrInfo()
439 cJSON_Delete(replyMsg); in SendReplyErrInfo()
442 ret = SendUdpInfo(replyMsg, authHandle, seq); in SendReplyErrInfo()
445 cJSON_Delete(replyMsg); in SendReplyErrInfo()
448 cJSON_Delete(replyMsg); in SendReplyErrInfo()
456 cJSON *replyMsg in SendReplyUdpInfo() local
[all...]
/foundation/CastEngine/castengine_wifi_display/tests/unittest/interaction/domain/
H A Ddomain_unit_test.cpp440 auto replyMsg = std::make_shared<BaseDomainMsg>(); in HWTEST_F() local
441 EXPECT_NE(replyMsg, nullptr); in HWTEST_F()
442 auto ret = domainRpcServiceProxy->DoRpcCommand(msg, replyMsg); in HWTEST_F()
501 auto replyMsg = std::make_shared<BaseDomainMsg>(); in HWTEST_F() local
502 EXPECT_NE(replyMsg, nullptr); in HWTEST_F()
503 auto ret = domainRpcServiceStub->DoRpcCommand(msg, replyMsg); in HWTEST_F()
633 auto replyMsg = std::make_shared<BaseDomainMsg>(); in HWTEST_F() local
634 EXPECT_NE(replyMsg, nullptr); in HWTEST_F()
635 auto ret = domainRpcService->DoRpcCommand(baseMsg, replyMsg); in HWTEST_F()
/foundation/multimedia/media_lite/services/player_lite/impl/player_control/player/fsm/src/
H A Dmmessage_pool.h26 MsgInfo *replyMsg; member
/foundation/multimedia/media_lite/services/player_lite/impl/player_control/player/fsm/include/
H A Dhi_fsm.h73 int32_t HI_FSM_SendSync(void *stateMachine, const MsgInfo *msg, const MsgInfo *replyMsg);

Completed in 10 milliseconds

12