Home
last modified time | relevance | path

Searched refs:AppendSurface (Results 1 - 20 of 20) sorted by relevance

/foundation/CastEngine/castengine_wifi_display/tests/fuzztest/sink_fuzzer/wfdappendsurface_fuzzer/
H A Dwfd_append_surface_fuzzer.cpp21 bool AppendSurface() in AppendSurface() function
32 if (client->AppendSurface(deviceId, surfaceId) != 0) { in AppendSurface()
43 OHOS::Sharing::AppendSurface(); in LLVMFuzzerTestOneInput()
/foundation/CastEngine/castengine_wifi_display/tests/unittest/mediaplayer/
H A Dmediacontroller_unit_test.cpp495 ret = mediaController->AppendSurface(g_testBase.GetSurface(), SceneType::FOREGROUND); in HWTEST_F()
601 ret = mediaController->AppendSurface(g_testBase.GetSurface(), SceneType::FOREGROUND); in HWTEST_F()
616 ret = mediaController->AppendSurface(g_testBase.GetSurface(), SceneType::BACKGROUND); in HWTEST_F()
633 ret = mediaController->AppendSurface(g_testBase.GetSurface(), SceneType::FOREGROUND); in HWTEST_F()
651 ret = mediaController->AppendSurface(g_testBase.GetSurface(), SceneType::FOREGROUND); in HWTEST_F()
654 ret = mediaController->AppendSurface(g_testBase.GetSurface(), SceneType::FOREGROUND); in HWTEST_F()
672 ret = mediaController->AppendSurface(g_testBase.GetSurface(), SceneType::FOREGROUND); in HWTEST_F()
689 ret = mediaController->AppendSurface(g_testBase.GetSurface(), SceneType::FOREGROUND); in HWTEST_F()
705 ret = mediaController->AppendSurface(g_testBase.GetSurface(), SceneType::FOREGROUND); in HWTEST_F()
738 ret = mediaController->AppendSurface(g_testBas in HWTEST_F()
[all...]
/foundation/CastEngine/castengine_wifi_display/tests/unittest/wfd_sink/
H A Dwfd_sink_unit_test.cpp48 EXPECT_NE(SharingErrorCode::ERR_OK, wfdSink_->AppendSurface("0", 0)); in HWTEST_F()
61 EXPECT_NE(SharingErrorCode::ERR_OK, wfdSink_->AppendSurface("0", surfaceId)); in HWTEST_F()
/foundation/CastEngine/castengine_wifi_display/services/mediaplayer/include/
H A Dmedia_controller.h51 bool AppendSurface(sptr<Surface> surface, SceneType sceneType);
/foundation/CastEngine/castengine_wifi_display/tests/demo/interaction/
H A Dwfd_sink_demo.cpp114 bool WfdSinkDemo::AppendSurface(std::string deviceId) in AppendSurface() function in WfdSinkDemo
144 if (client_->AppendSurface(deviceId, surfaceId) == -1) { in AppendSurface()
267 {"ListDevice", 11}, {"AppendSurface", 12}, {"RemoveSurface", 13}}; in DoCmd()
287 case 12: // AppendSurface in DoCmd()
397 AppendSurface(deviceId); in DoCmd()
443 listener->AppendSurface(info.mac); in OnConnectionChanged()
463 {"1", "GetConfig"}, {"2", "AppendSurface"}, {"3", "SetMediaFormat"}, {"4", "Start"}, in TestOneByOne()
468 "1-GetConfig; 2-AppendSurface;" in TestOneByOne()
H A Dwfd_sink_demo.h44 bool AppendSurface(std::string deviceId);
/foundation/CastEngine/castengine_wifi_display/frameworks/innerkitsimpl/native/wfd/
H A Dwifi_display.cpp91 int32_t WifiDisplay::AppendSurface(std::string devId, uint64_t surfaceId) in AppendSurface() function in OHOS::Sharing::WifiDisplay
95 auto ret = wfdSinkImpl_->AppendSurface(devId, surfaceId); in AppendSurface()
H A Dwfd_sink_impl.h69 int32_t AppendSurface(std::string deviceId, uint64_t surfaceId) override;
H A Dwfd_sink_impl.cpp106 int32_t WfdSinkImpl::AppendSurface(std::string deviceId, uint64_t surfaceId) in AppendSurface() function in OHOS::Sharing::WfdSinkImpl
/foundation/CastEngine/castengine_wifi_display/interfaces/innerkits/native/wfd/include/
H A Dwfd_sink.h40 virtual int32_t AppendSurface(std::string deviceId, uint64_t surfaceId) = 0;
H A Dwifi_diaplay.h90 int32_t AppendSurface(std::string devId, uint64_t surfaceId);
/foundation/CastEngine/castengine_wifi_display/tests/unittest/impl/scene/mock/
H A Dmock_sharing_adapter.h50 MOCK_METHOD(int32_t, AppendSurface, (uint32_t contextId, uint32_t agentId, sptr<Surface> surface,
/foundation/CastEngine/castengine_wifi_display/services/interaction/
H A Dsharing_adapter.h187 virtual int32_t AppendSurface(uint32_t contextId, uint32_t agentId, sptr<Surface> surface,
H A Dinteraction.h109 int32_t AppendSurface(uint32_t contextId, uint32_t agentId, sptr<Surface> surface,
H A Dinteraction.cpp423 int32_t Interaction::AppendSurface(uint32_t contextId, uint32_t agentId, sptr<Surface> surface, SceneType sceneType) in AppendSurface() function in OHOS::Sharing::Interaction
/foundation/CastEngine/castengine_wifi_display/services/mediaplayer/src/
H A Dmedia_controller.cpp146 bool MediaController::AppendSurface(sptr<Surface> surface, SceneType sceneType) in AppendSurface() function in OHOS::Sharing::MediaController
/foundation/CastEngine/castengine_wifi_display/tests/demo/wfd/
H A Dwfd_demo.cpp143 client_->AppendSurface(deviceInfo.deviceId, surfaceIds_[item]); in OnDeviceState()
/foundation/CastEngine/castengine_wifi_display/services/mediachannel/
H A Dmedia_channel.cpp375 if (playController_->AppendSurface(channelMsg->surface, channelMsg->sceneType)) { in HandleAppendSurface()
382 SHARING_LOGW("AppendSurface failed."); in HandleAppendSurface()
/foundation/CastEngine/castengine_wifi_display/services/impl/scene/wfd/
H A Dwfd_sink_scene.cpp544 sharingAdapter->AppendSurface(itemDev->second->contextId, itemDev->second->agentId, surfacePtr, in HandleAppendSurface()
737 sharingAdapter->AppendSurface(contextId, agentId, item.second->surfacePtr, item.second->sceneType); in HandlePlay()
/foundation/CastEngine/castengine_wifi_display/tests/unittest/interaction/scene/
H A Dscene_unit_test.cpp685 auto ret = interaction->AppendSurface(contextId, agentId, surfacePtr); in HWTEST_F()

Completed in 14 milliseconds