Home
last modified time | relevance | path

Searched refs:HasPrivateWindow (Results 1 – 25 of 38) sorted by relevance

12

/ohos5.0/foundation/window/window_manager/test/systemtest/dms/
H A Ddisplay_manager_test.cpp134 HWTEST_F(DisplayManagerTest, HasPrivateWindow, Function | SmallTest | Level2)
145 DisplayManager::GetInstance().HasPrivateWindow(id, hasPrivateWindow);
149 DisplayManager::GetInstance().HasPrivateWindow(id, hasPrivateWindow);
190 DisplayManager::GetInstance().HasPrivateWindow(id, hasPrivateWindow);
227 DisplayManager::GetInstance().HasPrivateWindow(id, hasPrivateWindow);
280 DisplayManager::GetInstance().HasPrivateWindow(id, hasPrivateWindow);
321 DisplayManager::GetInstance().HasPrivateWindow(id, hasPrivateWindow);
352 DisplayManager::GetInstance().HasPrivateWindow(id, hasPrivateWindow);
/ohos5.0/foundation/window/window_manager/utils/include/
H A Dwindow_info_queried_listener.h25 virtual void HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) = 0;
/ohos5.0/foundation/window/window_manager/interfaces/kits/cj/display_runtime/
H A Dcj_display_manager.h29 static RetStruct HasPrivateWindow(uint32_t displayId);
H A Dcj_display_manager.cpp149 RetStruct CJDisplayManager::HasPrivateWindow(uint32_t displayId) in HasPrivateWindow() function in OHOS::Rosen::CJDisplayManager
160 SingletonContainer::Get<DisplayManager>().HasPrivateWindow(displayId_, *hasPrivateWindow)); in HasPrivateWindow()
H A Ddisplay_ffi.cpp44 return CJDisplayManager::HasPrivateWindow(displayId); in FfiOHOSHasPrivateWindow()
/ohos5.0/foundation/window/window_manager/dmserver/test/unittest/
H A Ddisplay_manager_service_test.cpp91 void HasPrivateWindow(DisplayId id, bool& hasPrivateWindow) override {}; in HasPrivateWindow() function in OHOS::Rosen::WindowInfoQueriedListenerTest
166 HWTEST_F(DisplayManagerServiceTest, HasPrivateWindow, Function | SmallTest | Level3)
173 ASSERT_EQ(DMError::DM_ERROR_INVALID_PARAM, dms_->HasPrivateWindow(0, hasPrivateWindow));
176 ASSERT_EQ(DMError::DM_ERROR_NULLPTR, dms_->HasPrivateWindow(1, hasPrivateWindow));
H A Ddisplay_manager_proxy_test.cpp819 HWTEST_F(DisplayManagerProxyTest, HasPrivateWindow, Function | SmallTest | Level1)
826 auto result1 = proxy1.HasPrivateWindow(0, hasPrivateWindow);
830 auto result2 = proxy1.HasPrivateWindow(0, hasPrivateWindow);
/ohos5.0/foundation/window/window_manager/wmserver/include/
H A Dwindow_manager_service.h58 virtual void HasPrivateWindow(DisplayId id, bool& hasPrivateWindow) override;
145 void HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow);
H A Dwindow_root.h107 bool HasPrivateWindow(DisplayId displayId);
H A Dwindow_node_container.h122 bool HasPrivateWindow();
/ohos5.0/foundation/window/window_manager/dmserver/include/
H A Ddisplay_manager_proxy.h37 DMError HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) override;
H A Ddisplay_manager_service.h67 DMError HasPrivateWindow(DisplayId id, bool& hasPrivateWindow) override;
H A Ddisplay_manager_interface.h42 virtual DMError HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) = 0;
/ohos5.0/foundation/window/window_manager/test/fuzztest/dms/displaymanager_fuzzer/
H A Ddisplaymanager_fuzzer.cpp92 displayManager.HasPrivateWindow(displayId, flag); in DisplayFuzzTest()
/ohos5.0/foundation/window/window_manager/dm/src/
H A Ddisplay_manager_adapter.cpp509 DMError DisplayManagerAdapter::HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) in HasPrivateWindow() function in OHOS::Rosen::DisplayManagerAdapter
513 return displayManagerServiceProxy_->HasPrivateWindow(displayId, hasPrivateWindow); in HasPrivateWindow()
H A Ddisplay_manager.cpp55 DMError HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow);
957 DMError DisplayManager::HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) in HasPrivateWindow() function in OHOS::Rosen::DisplayManager
959 return pImpl_->HasPrivateWindow(displayId, hasPrivateWindow); in HasPrivateWindow()
962 DMError DisplayManager::Impl::HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) in HasPrivateWindow() function in OHOS::Rosen::DisplayManager::Impl
964 …return SingletonContainer::Get<DisplayManagerAdapter>().HasPrivateWindow(displayId, hasPrivateWind… in HasPrivateWindow()
/ohos5.0/foundation/window/window_manager/dm/test/unittest/
H A Ddisplay_manager_adapter_test.cpp628 HWTEST_F(DisplayManagerAdapterTest, HasPrivateWindow, Function | SmallTest | Level2)
631 DMError err = SingletonContainer::Get<DisplayManagerAdapter>().HasPrivateWindow(0,
/ohos5.0/foundation/window/window_manager/interfaces/innerkits/dm/
H A Ddisplay_manager.h225 DMError HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow);
/ohos5.0/foundation/window/window_manager/wmserver/src/
H A Dwindow_manager_service.cpp1581 void WindowManagerService::HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) in HasPrivateWindow() function in OHOS::Rosen::WindowManagerService
1584 hasPrivateWindow = windowRoot_->HasPrivateWindow(displayId); in HasPrivateWindow()
1602 void WindowInfoQueriedListener::HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) in HasPrivateWindow() function in OHOS::Rosen::WindowInfoQueriedListener
1605 WindowManagerService::GetInstance().HasPrivateWindow(displayId, hasPrivateWindow); in HasPrivateWindow()
/ohos5.0/foundation/window/window_manager/dm/include/
H A Ddisplay_manager_adapter.h66 virtual DMError HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow);
/ohos5.0/foundation/window/window_manager/dmserver/src/
H A Ddisplay_manager_service.cpp155 DMError DisplayManagerService::HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) in HasPrivateWindow() function in OHOS::Rosen::DisplayManagerService
168 windowInfoQueriedListener_->HasPrivateWindow(displayId, hasPrivateWindow); in HasPrivateWindow()
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/include/zidl/
H A Dscreen_session_manager_proxy.h119 virtual DMError HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) override;
H A Dscreen_session_manager_interface.h39 …virtual DMError HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) override { return DM… in HasPrivateWindow() function
/ohos5.0/foundation/window/window_manager/window_scene/test/dms_unittest/
H A Dscreen_session_manager_client_test.cpp306 screenSessionManagerClient_->screenSessionManager_->HasPrivateWindow(id, result);
326 screenSessionManagerClient_->screenSessionManager_->HasPrivateWindow(id, result);
H A Dscreen_session_manager_proxy_test.cpp1398 HWTEST_F(ScreenSessionManagerProxyTest, HasPrivateWindow, Function | SmallTest | Level1)
1408 screenSessionManagerProxy->HasPrivateWindow(displayId, hasPrivateWindow));
1411 screenSessionManagerProxy->HasPrivateWindow(displayId, hasPrivateWindow));

12