/foundation/window/window_manager/test/systemtest/dms/ |
H A D | display_manager_test.cpp | 129 * @tc.name: HasPrivateWindow 134 HWTEST_F(DisplayManagerTest, HasPrivateWindow, Function | SmallTest | Level2) in HWTEST_F() 145 DisplayManager::GetInstance().HasPrivateWindow(id, hasPrivateWindow); in HWTEST_F() 149 DisplayManager::GetInstance().HasPrivateWindow(id, hasPrivateWindow); in HWTEST_F() 190 DisplayManager::GetInstance().HasPrivateWindow(id, hasPrivateWindow); in HWTEST_F() 227 DisplayManager::GetInstance().HasPrivateWindow(id, hasPrivateWindow); in HWTEST_F() 280 DisplayManager::GetInstance().HasPrivateWindow(id, hasPrivateWindow); in HWTEST_F() 321 DisplayManager::GetInstance().HasPrivateWindow(id, hasPrivateWindow); in HWTEST_F() 352 DisplayManager::GetInstance().HasPrivateWindow(id, hasPrivateWindow); in HWTEST_F()
|
/foundation/window/window_manager/utils/include/ |
H A D | window_info_queried_listener.h | 25 virtual void HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) = 0;
|
/foundation/window/window_manager/interfaces/kits/cj/display_runtime/ |
H A D | cj_display_manager.h | 29 static RetStruct HasPrivateWindow(uint32_t displayId);
|
H A D | cj_display_manager.cpp | 149 RetStruct CJDisplayManager::HasPrivateWindow(uint32_t displayId) in HasPrivateWindow() function in OHOS::Rosen::CJDisplayManager 160 SingletonContainer::Get<DisplayManager>().HasPrivateWindow(displayId_, *hasPrivateWindow)); in HasPrivateWindow()
|
H A D | display_ffi.cpp | 44 return CJDisplayManager::HasPrivateWindow(displayId); in FfiOHOSHasPrivateWindow()
|
/foundation/window/window_manager/dmserver/test/unittest/ |
H A D | display_manager_service_test.cpp | 91 void HasPrivateWindow(DisplayId id, bool& hasPrivateWindow) override {}; 162 * @tc.name: HasPrivateWindow 166 HWTEST_F(DisplayManagerServiceTest, HasPrivateWindow, Function | SmallTest | Level3) in HWTEST_F() 173 ASSERT_EQ(DMError::DM_ERROR_INVALID_PARAM, dms_->HasPrivateWindow(0, hasPrivateWindow)); in HWTEST_F() 176 ASSERT_EQ(DMError::DM_ERROR_NULLPTR, dms_->HasPrivateWindow(1, hasPrivateWindow)); in HWTEST_F()
|
/foundation/window/window_manager/wmserver/include/ |
H A D | window_manager_service.h | 58 virtual void HasPrivateWindow(DisplayId id, bool& hasPrivateWindow) override; 144 void HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow);
|
H A D | window_root.h | 107 bool HasPrivateWindow(DisplayId displayId);
|
H A D | window_node_container.h | 122 bool HasPrivateWindow();
|
/foundation/window/window_manager/dmserver/include/ |
H A D | display_manager_proxy.h | 37 DMError HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) override;
|
H A D | display_manager_service.h | 66 DMError HasPrivateWindow(DisplayId id, bool& hasPrivateWindow) override;
|
H A D | display_manager_interface.h | 42 virtual DMError HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) = 0;
|
/foundation/window/window_manager/dm/test/unittest/ |
H A D | display_manager_adapter_test.cpp | 620 * @tc.name: HasPrivateWindow
624 HWTEST_F(DisplayManagerAdapterTest, HasPrivateWindow, Function | SmallTest | Level2)
in HWTEST_F() 627 DMError err = SingletonContainer::Get<DisplayManagerAdapter>().HasPrivateWindow(0,
in HWTEST_F()
|
H A D | display_manager_test.cpp | 706 * @tc.name: HasPrivateWindow 707 * @tc.desc: HasPrivateWindow fun 710 HWTEST_F(DisplayManagerTest, HasPrivateWindow, Function | SmallTest | Level1) in HWTEST_F() 714 auto ret = DisplayManager::GetInstance().HasPrivateWindow(0, hasPrivateWindow); in HWTEST_F() 720 * @tc.desc: HasPrivateWindow fun 728 auto ret = DisplayManager::GetInstance().pImpl_->HasPrivateWindow(0, hasPrivateWindow); in HWTEST_F()
|
/foundation/window/window_manager/interfaces/innerkits/dm/ |
H A D | display_manager.h | 215 DMError HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow);
|
/foundation/window/window_manager/test/fuzztest/dms/displaymanager_fuzzer/ |
H A D | displaymanager_fuzzer.cpp | 92 displayManager.HasPrivateWindow(displayId, flag); in DisplayFuzzTest()
|
/foundation/window/window_manager/dm/src/ |
H A D | display_manager.cpp | 54 DMError HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow);
887 DMError DisplayManager::HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow)
in HasPrivateWindow() function in OHOS::Rosen::DisplayManager 889 return pImpl_->HasPrivateWindow(displayId, hasPrivateWindow);
in HasPrivateWindow() 892 DMError DisplayManager::Impl::HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow)
in HasPrivateWindow() function in OHOS::Rosen::DisplayManager::Impl 894 return SingletonContainer::Get<DisplayManagerAdapter>().HasPrivateWindow(displayId, hasPrivateWindow);
in HasPrivateWindow()
|
H A D | display_manager_adapter.cpp | 534 DMError DisplayManagerAdapter::HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow)
in HasPrivateWindow() function in OHOS::Rosen::DisplayManagerAdapter 538 return displayManagerServiceProxy_->HasPrivateWindow(displayId, hasPrivateWindow);
in HasPrivateWindow()
|
/foundation/window/window_manager/dmserver/src/ |
H A D | display_manager_service.cpp | 154 DMError DisplayManagerService::HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow)
in HasPrivateWindow() function in OHOS::Rosen::DisplayManagerService 167 windowInfoQueriedListener_->HasPrivateWindow(displayId, hasPrivateWindow);
in HasPrivateWindow()
|
/foundation/window/window_manager/wmserver/src/ |
H A D | window_manager_service.cpp | 1588 void WindowManagerService::HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) in HasPrivateWindow() function in OHOS::Rosen::WindowManagerService 1591 hasPrivateWindow = windowRoot_->HasPrivateWindow(displayId); in HasPrivateWindow() 1593 PostVoidSyncTask(task, "HasPrivateWindow"); in HasPrivateWindow() 1609 void WindowInfoQueriedListener::HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) in HasPrivateWindow() function in OHOS::Rosen::WindowInfoQueriedListener 1612 WindowManagerService::GetInstance().HasPrivateWindow(displayId, hasPrivateWindow); in HasPrivateWindow()
|
/foundation/window/window_manager/dm/include/ |
H A D | display_manager_adapter.h | 65 virtual DMError HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow);
|
/foundation/window/window_manager/window_scene/screen_session_manager/include/zidl/ |
H A D | screen_session_manager_interface.h | 39 virtual DMError HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) override { return DMError::DM_OK; }
|
H A D | screen_session_manager_proxy.h | 124 virtual DMError HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) override;
|
/foundation/window/window_manager/window_scene/test/dms_unittest/ |
H A D | screen_session_manager_client_test.cpp | 306 screenSessionManagerClient_->screenSessionManager_->HasPrivateWindow(id, result); in HWTEST_F() 326 screenSessionManagerClient_->screenSessionManager_->HasPrivateWindow(id, result); in HWTEST_F()
|
/foundation/window/window_manager/wmserver/test/unittest/ |
H A D | window_manager_service_test.cpp | 921 wms->HasPrivateWindow(displayId, hasPrivateWindow); in HWTEST_F() 947 windowInfoQueriedListener->HasPrivateWindow(displayId, hasPrivateWindow); in HWTEST_F()
|