Home
last modified time | relevance | path

Searched refs:newParent (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/command/
H A Drs_base_node_command.cpp88 auto newParent = nodeMap.GetRenderNode(newParentId); in RemoveCrossParentChild() local
89 if (node && child && newParent) { in RemoveCrossParentChild()
90 node->RemoveCrossParentChild(child, newParent); in RemoveCrossParentChild()
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/systems/
H A Dnode_system.cpp763 const auto newParent = node.GetEntity(); in SetParent() local
767 data->parent = newParent; in SetParent()
770 UpdateParent(entity, oldParent, newParent); in SetParent()
792 void UpdateParent(Entity entity, Entity oldParent, Entity newParent) in UpdateParent() argument
804 if (SceneNode* parent = GetNode(newParent); parent) { in UpdateParent()
807 node->lastState_.parent = newParent; in UpdateParent()
812 oldParent.id, newParent.id); in UpdateParent()
908 if (SceneNode* newParent = GetNode(nodeComponent->parent)) { in Refresh() local
910 … if (std::none_of(newParent->children_.cbegin(), newParent->children_.cend(), in Refresh()
912 newParent->children_.push_back(sceneNode); in Refresh()
/ohos5.0/foundation/filemanagement/dfs_service/services/cloudfiledaemon/src/cloud_disk/
H A Dfuse_operations.cpp262 fuse_ino_t newParent, const char *newName, unsigned int flags) in Rename() argument
266 opsPtr->Rename(req, parent, name, newParent, newName, flags); in Rename()
275 inoPtr->ops->Rename(req, parent, name, newParent, newName, flags); in Rename()
H A Dfile_operations_base.cpp136 fuse_ino_t newParent, const char *newName, unsigned int flags) in Rename() argument
H A Dfile_operations_cloud.cpp1157 fuse_ino_t newParent, const char *newName, unsigned int flags) in Rename() argument
1171 …o newParentInode = FileOperationsHelper::FindCloudDiskInode(data, static_cast<int64_t>(newParent)); in Rename()
1193 inoPtr->parent = newParent; in Rename()
1197 NotifyOpsType::DAEMON_RENAME, nullptr, parent, name, newParent, newName}, in Rename()
/ohos5.0/foundation/filemanagement/dfs_service/services/cloudfiledaemon/include/cloud_disk/
H A Dfuse_operations.h46 fuse_ino_t newParent, const char *newName, unsigned int flags);
H A Dfile_operations_cloud.h44 fuse_ino_t newParent, const char *newName, unsigned int flags) override;
H A Dfile_operations_base.h51 fuse_ino_t newParent, const char *newName, unsigned int flags);
/ohos5.0/foundation/filemanagement/dfs_service/test/unittests/cloud_disk/
H A Dfile_operations_cloud_test.cpp1784 fuse_ino_t newParent = 0; variable
1791 fileOperationsCloud_->Rename(req, parent, name, newParent, newName, flags);
1812 fuse_ino_t newParent = -1; variable
1820 fileOperationsCloud_->Rename(req, parent, name, newParent, newName, flags);
1841 fuse_ino_t newParent = 2; variable
1849 fileOperationsCloud_->Rename(req, parent, name, newParent, newName, flags);
1870 fuse_ino_t newParent = 2; variable
1878 fileOperationsCloud_->Rename(req, parent, name, newParent, newName, flags);
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/pipeline/
H A Drs_base_render_node_test.cpp212 auto newParent = std::make_shared<RSBaseRenderNode>(id + 2, context); variable
220 node->RemoveCrossParentChild(childone, newParent);
268 std::weak_ptr<RSBaseRenderNode> newParent; variable
269 node->RemoveCrossParentChild(child, newParent);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/pipeline/
H A Drs_render_node.h97 void RemoveCrossParentChild(const SharedPtr& child, const WeakPtr& newParent);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/pipeline/
H A Drs_render_node.cpp475 void RSRenderNode::RemoveCrossParentChild(const SharedPtr& child, const WeakPtr& newParent) in RemoveCrossParentChild() argument
498 child->SetParent(newParent); in RemoveCrossParentChild()