Home
last modified time | relevance | path

Searched refs:appNode (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/foundation/window/window_manager/wmserver/test/unittest/
H A Dwindow_manager_service_test.cpp345 appNode->SetWindowToken(token);
348 wms->windowController_->windowRoot_->windowNodeMap_[appNode->GetWindowId()] = appNode;
414 appNode->SetWindowToken(token);
417 wms->windowController_->windowRoot_->windowNodeMap_[appNode->GetWindowId()] = appNode;
465 appNode->SetWindowToken(token);
468 wms->windowController_->windowRoot_->windowNodeMap_[appNode->GetWindowId()] = appNode;
1142 appNode->SetWindowToken(token);
1144 wms->windowController_->windowRoot_->windowNodeMap_[appNode->GetWindowId()] = appNode;
1169 appNode->SetWindowToken(token);
1171 wms->windowController_->windowRoot_->windowNodeMap_[appNode->GetWindowId()] = appNode;
[all …]
/ohos5.0/foundation/window/window_manager/wmserver/src/
H A Davoid_area_controller.cpp166 for (auto& appNode : avoidAreaListenerNodes_) { in UpdateOverlayWindowIfNeed() local
167 if (checkFunc != nullptr && checkFunc(appNode)) { in UpdateOverlayWindowIfNeed()
168 bool res = UpdateAvoidAreaIfNeed(GetAvoidAreaByType(appNode, type), appNode, type); in UpdateOverlayWindowIfNeed()
170 lastSoftInputKeyboardAreaUpdatedWindowId_ = appNode->GetWindowId(); in UpdateOverlayWindowIfNeed()
H A Dwindow_node_container.cpp1999 for (auto& appNode : appWindowNode_->children_) { in MinimizeOldestAppWindow() local
2005 for (auto& appNode : aboveAppWindowNode_->children_) { in MinimizeOldestAppWindow() local
2030 for (auto& appNode : root->children_) { in MinimizeOldestMainFloatingWindow() local
2031 WindowType windowType = appNode->GetWindowType(); in MinimizeOldestMainFloatingWindow()
2033 uint32_t winId = appNode->GetWindowId(); in MinimizeOldestMainFloatingWindow()
2078 for (auto& appNode : children) { in BackUpAllAppWindows() local
2082 auto windowMode = appNode->GetWindowMode(); in BackUpAllAppWindows()
2087 displayIdSet.insert(appNode->GetDisplayId()); in BackUpAllAppWindows()
2089 for (auto& appNode : children) { in BackUpAllAppWindows() local
2163 for (auto& appNode : appWindowNode_->children_) { in MinimizeAppNodeExceptOptions() local
[all …]
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_uni_render_visitor.h221 std::shared_ptr<RSSurfaceRenderNode>& appNode);
238 void UpdateHwcNodeDirtyRegionForApp(std::shared_ptr<RSSurfaceRenderNode>& appNode,
H A Drs_uni_render_visitor.cpp1895 …d RSUniRenderVisitor::UpdateHwcNodeDirtyRegionForApp(std::shared_ptr<RSSurfaceRenderNode>& appNode, in UpdateHwcNodeDirtyRegionForApp() argument
1902 appNode->GetDirtyManager()->MergeDirtyRect(hwcNode->GetDstRect()); in UpdateHwcNodeDirtyRegionForApp()
1909 appNode->GetDirtyManager()->MergeDirtyRect(hwcNode->GetOldDirtyInSurface()); in UpdateHwcNodeDirtyRegionForApp()
1912 !appNode->GetVisibleRegion().IsEmpty()) { in UpdateHwcNodeDirtyRegionForApp()
1983 std::shared_ptr<RSSurfaceRenderNode>& appNode) in UpdateChildHwcNodeEnableByHwcNodeBelow() argument
1985 const auto& hwcNodes = appNode->GetChildHardwareEnabledNodes(); in UpdateChildHwcNodeEnableByHwcNodeBelow()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/pipeline/
H A Drs_surface_render_node_two_test.cpp742 std::vector<std::shared_ptr<RSSurfaceRenderNode>> appNode; variable
743 ASSERT_FALSE(node->LeashWindowRelatedAppWindowOccluded(appNode));
746 ASSERT_TRUE(node->LeashWindowRelatedAppWindowOccluded(appNode));
750 ASSERT_TRUE(node->LeashWindowRelatedAppWindowOccluded(appNode));
H A Drs_render_node_test.cpp959 auto appNode = std::make_shared<RSSurfaceRenderNode>(DEFAULT_NODE_ID + 2); variable
960 appNode->nodeType_ = RSSurfaceNodeType::APP_WINDOW_NODE;
961 leashNode->AddChild(appNode);
962 leashNode->UpdateSubSurfaceCnt(appNode->subSurfaceCnt_);
967 appNode->AddChild(antherApp);
968 appNode->UpdateSubSurfaceCnt(antherApp->subSurfaceCnt_);
H A Drs_surface_render_node_test.cpp2077 std::vector<std::shared_ptr<RSSurfaceRenderNode>> appNode; variable
2078 ASSERT_FALSE(node->LeashWindowRelatedAppWindowOccluded(appNode));
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/
H A Drs_main_thread_test.cpp3820 auto appNode = std::make_shared<RSSurfaceRenderNode>(id + 2, context); variable
3821 appNode->nodeType_ = RSSurfaceNodeType::APP_WINDOW_NODE;
3822 leashNode->AddChild(appNode);
3826 context->nodeMap.RegisterRenderNode(appNode);
3853 auto appNode = std::make_shared<RSSurfaceRenderNode>(id + 2, context); variable
3854 appNode->nodeType_ = RSSurfaceNodeType::APP_WINDOW_NODE;
3855 leashNode->AddChild(appNode);
3857 leashNode->RemoveChild(appNode);
3862 context->nodeMap.RegisterRenderNode(appNode);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/pipeline/
H A Drs_surface_render_node.h911 …ol LeashWindowRelatedAppWindowOccluded(std::vector<std::shared_ptr<RSSurfaceRenderNode>>& appNode);