Home
last modified time | relevance | path

Searched refs:topWinId (Results 1 - 25 of 29) sorted by relevance

12

/foundation/window/window_manager/test/common/mock/
H A Dmock_window_adapter.h33 MOCK_METHOD2(GetTopWindowId, WMError(uint32_t mainWinId, uint32_t& topWinId));
/foundation/window/window_manager/wmserver/test/unittest/
H A Dwindow_manager_stub_impl.h52 WMError GetTopWindowId(uint32_t mainWinId, uint32_t& topWinId) in GetTopWindowId() argument
H A Dwindow_manager_proxy_test.cpp111 uint32_t topWinId; in HWTEST_F() local
112 WMError err = windowManagerProxy_->GetTopWindowId(mainWinId, topWinId); in HWTEST_F()
H A Dwindow_root_test.cpp910 uint32_t topWinId = 1; in HWTEST_F() local
911 auto ret = windowRoot_->GetTopWindowId(mainWinId, topWinId); in HWTEST_F()
1631 uint32_t topWinId = windowNode1->GetWindowId(); in HWTEST_F() local
1632 auto ret = windowRoot_->GetTopWindowId(windowNode3->GetWindowId(), topWinId); in HWTEST_F()
1634 ret = windowRoot_->GetTopWindowId(windowNode1->GetWindowId(), topWinId); in HWTEST_F()
1636 ret = windowRoot_->GetTopWindowId(windowNode2->GetWindowId(), topWinId); in HWTEST_F()
H A Dwindow_manager_service_test.cpp749 uint32_t topWinId = 1; in HWTEST_F() local
750 WMError res = wms->GetTopWindowId(mainWinId, topWinId); in HWTEST_F()
/foundation/window/window_manager/wmserver/include/zidl/
H A Dwindow_manager_proxy.h42 WMError GetTopWindowId(uint32_t mainWinId, uint32_t& topWinId) override;
H A Dwindow_manager_interface.h103 virtual WMError GetTopWindowId(uint32_t mainWinId, uint32_t& topWinId) = 0;
/foundation/window/window_manager/wmserver/src/zidl/
H A Dwindow_manager_stub.cpp191 uint32_t topWinId = 0; in OnRemoteRequest() local
192 WMError errCode = GetTopWindowId(mainWinId, topWinId); in OnRemoteRequest()
193 reply.WriteUint32(topWinId); in OnRemoteRequest()
H A Dwindow_manager_proxy.cpp591 uint32_t mainWinId, uint32_t& topWinId) in GetTopWindowId()
615 topWinId = reply.ReadUint32(); in GetTopWindowId()
590 GetTopWindowId( uint32_t mainWinId, uint32_t& topWinId) GetTopWindowId() argument
/foundation/window/window_manager/window_scene/session_manager/include/zidl/
H A Dscene_session_manager_proxy.h100 WMError GetTopWindowId(uint32_t mainWinId, uint32_t& topWinId) override;
H A Dscene_session_manager_interface.h190 WMError GetTopWindowId(uint32_t mainWinId, uint32_t& topWinId) override { return WMError::WM_OK; }
/foundation/window/window_manager/wmserver/include/
H A Dwindow_root.h69 WMError GetTopWindowId(uint32_t mainWinId, uint32_t& topWinId);
H A Dwindow_controller.h53 WMError GetTopWindowId(uint32_t mainWinId, uint32_t& topWinId);
H A Dwindow_manager_service.h106 WMError GetTopWindowId(uint32_t mainWinId, uint32_t& topWinId) override;
/foundation/window/window_manager/wm/test/unittest/
H A Dwindow_impl_test3.cpp1411 uint32_t topWinId = 1; in HWTEST_F() local
1412 ASSERT_EQ(WindowImpl::FindWindowById(topWinId), window->GetTopWindowWithId(mainWinId)); in HWTEST_F()
1442 uint32_t topWinId = INVALID_WINDOW_ID; in HWTEST_F() local
1443 ASSERT_EQ(WindowImpl::FindWindowById(topWinId), window->GetTopWindowWithContext(context)); in HWTEST_F()
/foundation/window/window_manager/wm/include/
H A Dwindow_adapter.h49 virtual WMError GetTopWindowId(uint32_t mainWinId, uint32_t& topWinId);
/foundation/window/window_manager/window_scene/test/unittest/
H A Dscene_session_manager_proxy_test.cpp996 uint32_t topWinId = 1; in HWTEST_F() local
997 ASSERT_EQ(WMError::WM_OK, sceneSessionManagerProxy_->GetTopWindowId(0, topWinId)); in HWTEST_F()
H A Dscene_session_manager_test2.cpp1830 uint32_t topWinId = 200; in HWTEST_F() local
1831 ret = ssm_->GetTopWindowId(persistentId, topWinId); in HWTEST_F()
1839 ret = ssm_->GetTopWindowId(persistentId, topWinId); in HWTEST_F()
H A Dscene_session_manager_test3.cpp1790 uint32_t topWinId; in HWTEST_F() local
1791 ASSERT_NE(ssm_->GetTopWindowId(static_cast<uint32_t>(sceneSession1->GetPersistentId()), topWinId), in HWTEST_F()
/foundation/window/window_manager/wm/src/
H A Dwindow_adapter.cpp462 WMError WindowAdapter::GetTopWindowId(uint32_t mainWinId, uint32_t& topWinId) in GetTopWindowId() argument
468 return wmsProxy->GetTopWindowId(mainWinId, topWinId); in GetTopWindowId()
H A Dwindow_impl.cpp216 uint32_t topWinId = INVALID_WINDOW_ID; in GetTopWindowWithId() local
217 WMError ret = SingletonContainer::Get<WindowAdapter>().GetTopWindowId(mainWinId, topWinId); in GetTopWindowWithId()
222 return FindWindowById(topWinId); in GetTopWindowWithId()
250 uint32_t topWinId = INVALID_WINDOW_ID; in GetTopWindowWithContext() local
251 WMError ret = SingletonContainer::Get<WindowAdapter>().GetTopWindowId(mainWinId, topWinId); in GetTopWindowWithContext()
256 return FindWindowById(topWinId); in GetTopWindowWithContext()
H A Dwindow_scene_session_impl.cpp2763 uint32_t topWinId = INVALID_WINDOW_ID; in GetTopWindowWithContext() local
2764 WMError ret = SingletonContainer::Get<WindowAdapter>().GetTopWindowId(mainWinId, topWinId); in GetTopWindowWithContext()
2769 return FindWindowById(topWinId); in GetTopWindowWithContext()
2776 uint32_t topWinId = INVALID_WINDOW_ID; in GetTopWindowWithId() local
2777 WMError ret = SingletonContainer::Get<WindowAdapter>().GetTopWindowId(mainWinId, topWinId); in GetTopWindowWithId()
2782 return FindWindowById(topWinId); in GetTopWindowWithId()
/foundation/window/window_manager/window_scene/session_manager/src/zidl/
H A Dscene_session_manager_stub.cpp920 uint32_t topWinId; in HandleGetTopWindowId() local
921 WMError ret = GetTopWindowId(mainWinId, topWinId); in HandleGetTopWindowId()
922 reply.WriteUint32(topWinId); in HandleGetTopWindowId()
/foundation/window/window_manager/wmserver/src/
H A Dwindow_manager_service.cpp1304 WMError WindowManagerService::GetTopWindowId(uint32_t mainWinId, uint32_t& topWinId) in GetTopWindowId() argument
1306 auto task = [this, &topWinId, mainWinId]() { in GetTopWindowId()
1307 return windowController_->GetTopWindowId(mainWinId, topWinId); in GetTopWindowId()
H A Dwindow_root.cpp1456 WMError WindowRoot::GetTopWindowId(uint32_t mainWinId, uint32_t& topWinId) in GetTopWindowId() argument
1469 topWinId = (*iter)->GetWindowId(); in GetTopWindowId()
1473 topWinId = mainWinId; in GetTopWindowId()

Completed in 45 milliseconds

12