/foundation/CastEngine/castengine_wifi_display/frameworks/innerkitsimpl/native/wfd/ |
H A D | wfd_sink_impl.cpp | 91 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 D | wfd_source_impl.cpp | 85 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 D | interprocess_unit_test.cpp | 130 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 D | inter_ipc_stub.cpp | 94 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 D | inter_ipc_client_stub.cpp | 65 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 D | inter_ipc_sub_stub.cpp | 34 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 D | inter_ipc_proxy.cpp | 66 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 D | inter_ipc_sub_stub.h | 32 int32_t DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) override;
|
H A D | inter_ipc_client_stub.h | 31 int32_t DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) override;
|
H A D | inter_ipc_service_stub.cpp | 69 int32_t InterIpcServiceStub::DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) in DoIpcCommand() argument 73 (void)replyMsg; in DoIpcCommand()
|
H A D | inter_ipc_service_stub.h | 33 int32_t DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) override;
|
H A D | i_inter_ipc.h | 34 virtual int32_t DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) = 0;
|
H A D | inter_ipc_proxy.h | 31 int32_t DoIpcCommand(std::shared_ptr<BaseMsg> msg, std::shared_ptr<BaseMsg> &replyMsg) override;
|
H A D | inter_ipc_stub.h | 48 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 D | domain_rpc_service_stub.cpp | 124 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 D | domain_rpc_service.cpp | 86 int32_t DomainRpcService::DoRpcCommand(std::shared_ptr<BaseDomainMsg> msg, std::shared_ptr<BaseDomainMsg> replyMsg) in DoRpcCommand() argument 89 (void)replyMsg; in DoRpcCommand()
|
H A D | domain_rpc_client.cpp | 160 std::shared_ptr<BaseDomainMsg> replyMsg = std::make_shared<BaseDomainMsg>(); in SendDomainRequest() local 162 domainProxy_->DoRpcCommand(BaseMsg, replyMsg); in SendDomainRequest()
|
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_service.h | 45 int32_t DoRpcCommand(std::shared_ptr<BaseDomainMsg> msg, std::shared_ptr<BaseDomainMsg> replyMsg) final;
|
H A D | domain_rpc_service_stub.h | 41 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 D | trans_udp_negotiation.c | 411 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 D | domain_unit_test.cpp | 440 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 D | mmessage_pool.h | 26 MsgInfo *replyMsg; member
|
/foundation/multimedia/media_lite/services/player_lite/impl/player_control/player/fsm/include/ |
H A D | hi_fsm.h | 73 int32_t HI_FSM_SendSync(void *stateMachine, const MsgInfo *msg, const MsgInfo *replyMsg);
|