Home
last modified time | relevance | path

Searched refs:FollowType (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/transaction/
H A Drs_transaction_proxy_test.cpp198 RSTransactionProxy::GetInstance()->AddCommand(command, false, FollowType::FOLLOW_TO_PARENT, 1);
220 RSTransactionProxy::GetInstance()->AddCommand(command, false, FollowType::FOLLOW_TO_PARENT, 1);
290 RSTransactionProxy::GetInstance()->AddCommandFromRT(command, 1, FollowType::FOLLOW_TO_PARENT);
407 RSTransactionProxy::GetInstance()->AddCommand(command, false, FollowType::FOLLOW_TO_PARENT, 1);
429 RSTransactionProxy::GetInstance()->AddCommand(command, true, FollowType::FOLLOW_TO_PARENT, 1);
452 RSTransactionProxy::GetInstance()->AddCommand(command, true, FollowType::FOLLOW_TO_PARENT, 1);
578 RSTransactionProxy::GetInstance()->AddCommand(command, true, FollowType::FOLLOW_TO_PARENT, 1);
597 RSTransactionProxy::GetInstance()->AddCommand(command, true, FollowType::FOLLOW_TO_PARENT, 1);
656 RSTransactionProxy::GetInstance()->AddCommand(command, true, FollowType::FOLLOW_TO_PARENT, 1);
847 instance->AddRemoteCommand(command, 1, FollowType::NONE);
[all …]
H A Drs_transaction_data_test.cpp331 rsTransactionData.AddCommand(command, 1, FollowType::FOLLOW_TO_PARENT);
346 rsTransactionData.AddCommand(command, 1, FollowType::FOLLOW_TO_PARENT);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/transaction/
H A Drs_transaction_proxy.h43 FollowType followType = FollowType::NONE, NodeId nodeId = 0);
44 …FromRT(std::unique_ptr<RSCommand>& command, NodeId nodeId, FollowType followType = FollowType::FOL…
90 … void AddRemoteCommand(std::unique_ptr<RSCommand>& command, NodeId nodeId, FollowType followType);
H A Drs_transaction_data.h118 std::vector<std::tuple<NodeId, FollowType, std::unique_ptr<RSCommand>>>& GetPayload() in GetPayload()
177 void AddCommand(std::unique_ptr<RSCommand>& command, NodeId nodeId, FollowType followType);
178 void AddCommand(std::unique_ptr<RSCommand>&& command, NodeId nodeId, FollowType followType);
185 std::vector<std::tuple<NodeId, FollowType, std::unique_ptr<RSCommand>>> payload_ = {};
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/transaction/
H A Drs_transaction_proxy.cpp67 FollowType followType, NodeId nodeId) in AddCommand()
93 …nProxy::AddCommandFromRT(std::unique_ptr<RSCommand>& command, NodeId nodeId, FollowType followType) in AddCommandFromRT()
341 implicitCommonTransactionDataStack_.top()->AddCommand(command, 0, FollowType::NONE); in AddCommonCommand()
344 implicitCommonTransactionData_->AddCommand(command, 0, FollowType::NONE); in AddCommonCommand()
347 …nProxy::AddRemoteCommand(std::unique_ptr<RSCommand>& command, NodeId nodeId, FollowType followType) in AddRemoteCommand()
H A Drs_transaction_data.cpp187 void RSTransactionData::AddCommand(std::unique_ptr<RSCommand>& command, NodeId nodeId, FollowType f… in AddCommand()
196 void RSTransactionData::AddCommand(std::unique_ptr<RSCommand>&& command, NodeId nodeId, FollowType in AddCommand()
265 payload_.emplace_back(nodeId, static_cast<FollowType>(followType), std::move(command)); in UnmarshallingCommand()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/command/
H A Drs_message_processor.cpp43 transactionMap_[pid]->AddCommand(std::move(command), 0, FollowType::NONE); in AddUIMessage()
53 transactionMap_[pid]->AddCommand(std::move(command), 0, FollowType::NONE); in AddUIMessage()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/ui/
H A Drs_surface_node.cpp210 FollowType RSSurfaceNode::GetFollowType() const in GetFollowType()
213 return FollowType::NONE; in GetFollowType()
215 return FollowType::FOLLOW_TO_PARENT; in GetFollowType()
658 transactionProxy->AddCommand(command, false, FollowType::FOLLOW_TO_PARENT, GetId()); in ~RSSurfaceNode()
672 transactionProxy->AddCommand(command, false, FollowType::FOLLOW_TO_PARENT, GetId()); in ~RSSurfaceNode()
H A Drs_surface_node.h102 FollowType GetFollowType() const override;
H A Drs_node.h105 virtual FollowType GetFollowType() const in GetFollowType()
107 return FollowType::NONE; in GetFollowType()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/
H A Drs_main_thread_test.cpp549 FollowType followType = FollowType::NONE;
568 FollowType followType = FollowType::NONE;
587 FollowType followType = FollowType::FOLLOW_TO_PARENT;
618 FollowType followType = FollowType::FOLLOW_TO_SELF;
626 followType = FollowType::FOLLOW_TO_PARENT;
1297 …data->payload_[0] = std::tuple<NodeId, FollowType, std::unique_ptr<RSCommand>>(0, FollowType::NONE…
2057 FollowType, std::unique_ptr<RSCommand>>(id, FollowType::NONE, nullptr);
2060 FollowType, std::unique_ptr<RSCommand>>(id, FollowType::FOLLOW_TO_SELF, nullptr);
2063 FollowType, std::unique_ptr<RSCommand>>(id, FollowType::FOLLOW_TO_PARENT, nullptr);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/pipeline/
H A Drs_render_thread_visitor.cpp557 SendCommandFromRT(command, thisSurfaceNodeId, FollowType::FOLLOW_TO_SELF); in ProcessRootRenderNode()
560 SendCommandFromRT(command, thisSurfaceNodeId, FollowType::FOLLOW_TO_SELF); in ProcessRootRenderNode()
944 SendCommandFromRT(command, thisSurfaceNodeId, FollowType::FOLLOW_TO_SELF); in ProcessSurfaceRenderNode()
947 SendCommandFromRT(command, thisSurfaceNodeId, FollowType::FOLLOW_TO_SELF); in ProcessSurfaceRenderNode()
1035 …sitor::SendCommandFromRT(std::unique_ptr<RSCommand>& command, NodeId nodeId, FollowType followType) in SendCommandFromRT()
H A Drs_render_thread_visitor.h115 …static void SendCommandFromRT(std::unique_ptr<RSCommand>& command, NodeId nodeId, FollowType follo…
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/common/
H A Drs_common_def.h61 enum class FollowType : uint8_t { enum
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/platform/ohos/
H A Drs_render_service_connection_proxy_test.cpp68 FollowType followType = FollowType::FOLLOW_TO_PARENT;
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_main_thread.cpp1047 std::vector<std::tuple<NodeId, FollowType, std::unique_ptr<RSCommand>>> skipPayload; in SkipCommandByNodeId()
2999 if (nodeId == 0 || followType == FollowType::NONE) { in ClassifyRSTransactionData()
3004 if (node && followType == FollowType::FOLLOW_TO_PARENT) { in ClassifyRSTransactionData()
3245 transactionData->AddCommand(std::move(command), id, FollowType::NONE); in SendClientDumpNodeTreeCommands()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/unittest/pipeline/
H A Drs_render_thread_visitor_test.cpp1268 visitor.SendCommandFromRT(command, 1, FollowType::NONE);