Searched refs:WfdCommonRsp (Results 1 - 10 of 10) sorted by relevance
/foundation/CastEngine/castengine_wifi_display/frameworks/innerkitsimpl/native/wfd/ |
H A D | wfd_sink_impl.cpp | 135 auto reply = std::static_pointer_cast<BaseMsg>(std::make_shared<WfdCommonRsp>()); in AppendSurface() 143 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); in AppendSurface() 158 auto reply = std::static_pointer_cast<BaseMsg>(std::make_shared<WfdCommonRsp>()); in RemoveSurface() 166 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); in RemoveSurface() 178 auto reply = std::static_pointer_cast<BaseMsg>(std::make_shared<WfdCommonRsp>()); in Start() 186 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); in Start() 198 auto reply = std::static_pointer_cast<BaseMsg>(std::make_shared<WfdCommonRsp>()); in Stop() 206 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); in Stop() 222 auto reply = std::static_pointer_cast<BaseMsg>(std::make_shared<WfdCommonRsp>()); in SetMediaFormat() 230 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(repl in SetMediaFormat() [all...] |
H A D | wfd_source_impl.cpp | 77 auto reply = std::static_pointer_cast<BaseMsg>(std::make_shared<WfdCommonRsp>()); in StartDiscover() 85 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); in StartDiscover() 97 auto replyStopDiscoveryReq = std::static_pointer_cast<BaseMsg>(std::make_shared<WfdCommonRsp>()); in StopDiscover() 105 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(replyStopDiscoveryReq); in StopDiscover() 122 auto reply = std::static_pointer_cast<BaseMsg>(std::make_shared<WfdCommonRsp>()); in AddDevice() 146 auto reply = std::static_pointer_cast<BaseMsg>(std::make_shared<WfdCommonRsp>()); in RemoveDevice() 156 auto replyMsg = std::static_pointer_cast<WfdCommonRsp>(reply); in RemoveDevice()
|
/foundation/CastEngine/castengine_wifi_display/services/impl/scene/wfd/ |
H A D | wfd_sink_scene.h | 108 int32_t HandleStop(std::shared_ptr<WfdSinkStopReq> &msg, std::shared_ptr<WfdCommonRsp> &reply); 109 int32_t HandleStart(std::shared_ptr<WfdSinkStartReq> &msg, std::shared_ptr<WfdCommonRsp> &reply); 111 int32_t HandleSetSceneType(std::shared_ptr<SetSceneTypeReq> &msg, std::shared_ptr<WfdCommonRsp> &reply); 112 int32_t HandleSetMediaFormat(std::shared_ptr<SetMediaFormatReq> &msg, std::shared_ptr<WfdCommonRsp> &reply); 113 int32_t HandleAppendSurface(std::shared_ptr<WfdAppendSurfaceReq> &msg, std::shared_ptr<WfdCommonRsp> &reply); 114 int32_t HandleRemoveSurface(std::shared_ptr<WfdRemoveSurfaceReq> &msg, std::shared_ptr<WfdCommonRsp> &reply); 116 int32_t HandleMute(std::shared_ptr<MuteReq> &msg, std::shared_ptr<WfdCommonRsp> &reply); 117 int32_t HandlePlay(std::shared_ptr<WfdPlayReq> &msg, std::shared_ptr<WfdCommonRsp> &reply); 118 int32_t HandleUnMute(std::shared_ptr<UnMuteReq> &msg, std::shared_ptr<WfdCommonRsp> &reply); 119 int32_t HandlePause(std::shared_ptr<WfdPauseReq> &msg, std::shared_ptr<WfdCommonRsp> [all...] |
H A D | wfd_source_scene.h | 114 int32_t HandleStartDiscovery(std::shared_ptr<BaseMsg> &baseMsg, std::shared_ptr<WfdCommonRsp> &reply); 115 int32_t HandleStopDiscovery(std::shared_ptr<BaseMsg> &baseMsg, std::shared_ptr<WfdCommonRsp> &reply); 116 int32_t HandleAddDevice(std::shared_ptr<BaseMsg> &baseMsg, std::shared_ptr<WfdCommonRsp> &reply); 117 int32_t HandleRemoveDevice(std::shared_ptr<BaseMsg> &baseMsg, std::shared_ptr<WfdCommonRsp> &reply);
|
H A D | wfd_sink_scene.cpp | 307 auto rsp = std::make_shared<WfdCommonRsp>(); in OnRequest() 315 auto rsp = std::make_shared<WfdCommonRsp>(); in OnRequest() 323 auto rsp = std::make_shared<WfdCommonRsp>(); in OnRequest() 331 auto rsp = std::make_shared<WfdCommonRsp>(); in OnRequest() 339 auto rsp = std::make_shared<WfdCommonRsp>(); in OnRequest() 347 auto rsp = std::make_shared<WfdCommonRsp>(); in OnRequest() 355 auto rsp = std::make_shared<WfdCommonRsp>(); in OnRequest() 363 auto rsp = std::make_shared<WfdCommonRsp>(); in OnRequest() 371 auto rsp = std::make_shared<WfdCommonRsp>(); in OnRequest() 379 auto rsp = std::make_shared<WfdCommonRsp>(); in OnRequest() [all...] |
H A D | wfd_source_scene.cpp | 364 auto rsp = std::make_shared<WfdCommonRsp>(); in OnRequest() 371 auto rsp = std::make_shared<WfdCommonRsp>(); in OnRequest() 379 auto rsp = std::make_shared<WfdCommonRsp>(); in OnRequest() 386 auto rsp = std::make_shared<WfdCommonRsp>(); in OnRequest() 394 auto rsp = std::make_shared<WfdCommonRsp>(); in OnRequest() 406 std::shared_ptr<WfdCommonRsp> &reply) in HandleStartDiscovery() 455 std::shared_ptr<WfdCommonRsp> &reply) in HandleStopDiscovery() 476 std::shared_ptr<WfdCommonRsp> &reply) in HandleAddDevice() 514 std::shared_ptr<WfdCommonRsp> &reply) in HandleRemoveDevice() 715 auto reply = std::static_pointer_cast<BaseMsg>(std::make_shared<WfdCommonRsp>()); in OnDeviceFound() [all...] |
H A D | wfd_msg.h | 56 struct WfdCommonRsp : public BaseMsg { struct 60 WfdCommonRsp() = default; 61 explicit WfdCommonRsp(const WfdCommonRsp &rReq) {}; in WfdCommonRsp() function 62 WfdCommonRsp &operator=(const WfdCommonRsp &rReq) in operator =()
|
/foundation/CastEngine/castengine_wifi_display/tests/unittest/impl/scene/ |
H A D | wfd_source_scene_test.cpp | 75 std::shared_ptr<WfdCommonRsp> reply = std::make_shared<WfdCommonRsp>(); in HWTEST_F() 91 std::shared_ptr<WfdCommonRsp> reply = std::make_shared<WfdCommonRsp>(); in HWTEST_F() 107 std::shared_ptr<WfdCommonRsp> reply = std::make_shared<WfdCommonRsp>(); in HWTEST_F() 123 std::shared_ptr<WfdCommonRsp> reply = std::make_shared<WfdCommonRsp>(); in HWTEST_F() 139 std::shared_ptr<WfdCommonRsp> reply = std::make_shared<WfdCommonRsp>(); in HWTEST_F() [all...] |
H A D | wfd_sink_scene_test.cpp | 161 auto reply = std::make_shared<WfdCommonRsp>(); in HWTEST_F() 177 auto reply = std::make_shared<WfdCommonRsp>(); in HWTEST_F() 193 auto reply = std::make_shared<WfdCommonRsp>(); in HWTEST_F() 209 auto reply = std::make_shared<WfdCommonRsp>(); in HWTEST_F() 233 auto reply = std::make_shared<WfdCommonRsp>(); in HWTEST_F() 249 auto reply = std::make_shared<WfdCommonRsp>(); in HWTEST_F() 271 auto reply = std::make_shared<WfdCommonRsp>(); in HWTEST_F() 468 auto reply = std::make_shared<WfdCommonRsp>(); in HWTEST_F() 480 auto reply = std::make_shared<WfdCommonRsp>(); in HWTEST_F() 495 auto reply = std::make_shared<WfdCommonRsp>(); in HWTEST_F() [all...] |
/foundation/CastEngine/castengine_wifi_display/tests/unittest/interaction/scene/ |
H A D | scene_unit_test.cpp | 1173 auto wfdCommonRsp = std::make_shared<WfdCommonRsp>(); in HWTEST_F() 1176 auto wfdCommonRspGet = std::make_shared<WfdCommonRsp>(); in HWTEST_F() 1184 auto wfdCommonRspGetNew = std::static_pointer_cast<WfdCommonRsp>(baseMsgGet); in HWTEST_F()
|
Completed in 10 milliseconds