Home
last modified time | relevance | path

Searched refs:StopMirror (Results 1 - 25 of 26) sorted by relevance

12

/foundation/distributedhardware/distributed_screen/services/screendemo/
H A Dtest.cpp123 static void StopMirror() in StopMirror() function
340 cout << "1:StopMirror" << endl; in main()
351 (void)StopMirror(); in main()
/foundation/window/window_manager/interfaces/innerkits/dm/
H A Dscreen_manager.h158 DMError StopMirror(const std::vector<ScreenId>& mirrorScreenIds);
/foundation/window/window_manager/dmserver/test/unittest/
H A Ddisplay_manager_service_test.cpp363 ASSERT_EQ(DMError::DM_OK, dms_->StopMirror(mirrorScreenIds)); in HWTEST_F()
533 * @tc.name: StopMirror
534 * @tc.desc: StopMirror
537 HWTEST_F(DisplayManagerServiceTest, StopMirror, Function | SmallTest | Level3) in HWTEST_F()
543 DMError ret = dms_->StopMirror(mirrorScreenIds); in HWTEST_F()
H A Ddisplay_manager_proxy_test.cpp986 * @tc.name: StopMirror
987 * @tc.desc: test DisplayManagerProxy::StopMirror
990 HWTEST_F(DisplayManagerProxyTest, StopMirror, Function | SmallTest | Level1) in HWTEST_F()
997 auto result1 = proxy1.StopMirror(mirrorScreenId); in HWTEST_F()
1004 auto result2 = proxy2.StopMirror(mirrorScreenId); in HWTEST_F()
1008 auto result3 = proxy2.StopMirror(mirrorScreenId); in HWTEST_F()
/foundation/window/window_manager/dmserver/include/
H A Ddisplay_manager_proxy.h86 DMError StopMirror(const std::vector<ScreenId>& mirrorScreenIds) override;
H A Ddisplay_manager_service.h102 DMError StopMirror(const std::vector<ScreenId>& mirrorScreenIds) override;
H A Ddisplay_manager_interface.h152 virtual DMError StopMirror(const std::vector<ScreenId>& mirrorScreenIds) = 0;
/foundation/window/window_manager/dm/test/unittest/
H A Dscreen_manager_test.cpp476 * @tc.name: StopMirror
477 * @tc.desc: StopMirror id
480 HWTEST_F(ScreenManagerTest, StopMirror, Function | SmallTest | Level1) in HWTEST_F()
485 ASSERT_EQ(DMError::DM_OK, ScreenManager::GetInstance().StopMirror(screenIds)); in HWTEST_F()
487 DMError err = SingletonContainer::Get<ScreenManagerAdapter>().StopMirror(mirrorScreenIds1); in HWTEST_F()
490 err = SingletonContainer::Get<ScreenManagerAdapter>().StopMirror(mirrorScreenIds2); in HWTEST_F()
H A Ddisplay_manager_adapter_test.cpp608 * @tc.name: StopMirror
612 HWTEST_F(DisplayManagerAdapterTest, StopMirror, Function | SmallTest | Level2) in HWTEST_F()
615 DMError err = SingletonContainer::Get<ScreenManagerAdapter>().StopMirror(mirrorScreenIds); in HWTEST_F()
/foundation/window/window_manager/dm/src/
H A Ddisplay_manager_adapter.cpp500 DMError ScreenManagerAdapter::StopMirror(const std::vector<ScreenId>& mirrorScreenIds) in StopMirror() function in OHOS::Rosen::ScreenManagerAdapter
504 return displayManagerServiceProxy_->StopMirror(mirrorScreenIds); in StopMirror()
H A Dscreen_manager.cpp520 DMError ScreenManager::StopMirror(const std::vector<ScreenId>& mirrorScreenIds) in StopMirror() function in OHOS::Rosen::ScreenManager
526 return SingletonContainer::Get<ScreenManagerAdapter>().StopMirror(mirrorScreenIds); in StopMirror()
/foundation/window/window_manager/dm/include/
H A Ddisplay_manager_adapter.h127 virtual DMError StopMirror(const std::vector<ScreenId>& mirrorScreenIds);
/foundation/window/window_manager/window_scene/screen_session_manager/include/zidl/
H A Dscreen_session_manager_interface.h118 virtual DMError StopMirror(const std::vector<ScreenId>& mirrorScreenIds) override { return DMError::DM_OK; }
H A Dscreen_session_manager_proxy.h92 virtual DMError StopMirror(const std::vector<ScreenId>& mirrorScreenIds) override;
/foundation/window/window_manager/interfaces/kits/napi/screen_runtime/napi/
H A Djs_screen_manager.cpp102 static napi_value StopMirror(napi_env env, napi_callback_info info) in StopMirror() function in OHOS::Rosen::JsScreenManager
623 SingletonContainer::Get<ScreenManager>().StopMirror(screenIds)); in OnStopMirror()
1240 BindNativeFunction(env, exportObj, "stopMirror", moduleName, JsScreenManager::StopMirror); in JsScreenManagerInit()
/foundation/window/window_manager/window_scene/test/dms_unittest/
H A Dscreen_session_manager_proxy_test.cpp932 * @tc.name: StopMirror
933 * @tc.desc: StopMirror
936 HWTEST_F(ScreenSessionManagerProxyTest, StopMirror, Function | SmallTest | Level1) in HWTEST_F()
945 screenSessionManagerProxy->StopMirror(mirrorScreenIds)); in HWTEST_F()
948 screenSessionManagerProxy->StopMirror(mirrorScreenIds)); in HWTEST_F()
H A Dscreen_session_manager_test.cpp2367 * @tc.name: StopMirror
2368 * @tc.desc: StopMirror test
2371 HWTEST_F(ScreenSessionManagerTest, StopMirror, Function | SmallTest | Level3) in HWTEST_F()
2374 EXPECT_EQ(DMError::DM_OK, ssm_->StopMirror(mirrorScreenIds)); in HWTEST_F()
/foundation/window/window_manager/test/fuzztest/window_scene/screensessionmanager_fuzzer/
H A Dscreensessionmanager_fuzzer.cpp308 proxy->StopMirror(screenIds); in ProxyInterfaceFuzzTestPart3()
/foundation/window/window_manager/dmserver/src/
H A Ddisplay_manager_stub.cpp409 DMError ret = StopMirror(mirrorScreenIds); in OnRemoteRequest()
H A Ddisplay_manager_service.cpp560 DMError DisplayManagerService::StopMirror(const std::vector<ScreenId>& mirrorScreenIds) in StopMirror() function in OHOS::Rosen::DisplayManagerService
H A Ddisplay_manager_proxy.cpp1320 DMError DisplayManagerProxy::StopMirror(const std::vector<ScreenId>& mirrorScreenIds) in StopMirror() function in OHOS::Rosen::DisplayManagerProxy
1324 WLOGFW("StopMirror fail: remote is null"); in StopMirror()
1332 WLOGFE("StopMirror fail: WriteInterfaceToken failed"); in StopMirror()
1337 WLOGFE("StopMirror fail: data write failed"); in StopMirror()
1342 WLOGFW("StopMirror fail: SendRequest failed"); in StopMirror()
/foundation/window/window_manager/window_scene/screen_session_manager/include/
H A Dscreen_session_manager.h115 virtual DMError StopMirror(const std::vector<ScreenId>& mirrorScreenIds) override;
/foundation/window/window_manager/window_scene/screen_session_manager/src/zidl/
H A Dscreen_session_manager_stub.cpp307 DMError ret = StopMirror(mirrorScreenIds); in OnRemoteRequest()
H A Dscreen_session_manager_proxy.cpp1339 DMError ScreenSessionManagerProxy::StopMirror(const std::vector<ScreenId>& mirrorScreenIds) in StopMirror() function in OHOS::Rosen::ScreenSessionManagerProxy
1343 WLOGFW("StopMirror fail: remote is null"); in StopMirror()
1351 WLOGFE("StopMirror fail: WriteInterfaceToken failed"); in StopMirror()
1356 WLOGFE("StopMirror fail: data write failed"); in StopMirror()
1361 WLOGFW("StopMirror fail: SendRequest failed"); in StopMirror()
/foundation/multimedia/player_framework/services/services/screen_capture/server/
H A Dscreen_capture_server.cpp1948 ScreenManager::GetInstance().StopMirror(screenIds); in DestroyVirtualScreen()

Completed in 42 milliseconds

12