Home
last modified time | relevance | path

Searched refs:UnmarshallingFunc (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/command/
H A Drs_command_factory.h28 using UnmarshallingFunc = RSCommand* (*)(Parcel& parcel); variable
34 void Register(uint16_t type, uint16_t subtype, UnmarshallingFunc func);
35 UnmarshallingFunc GetUnmarshallingFunc(uint16_t type, uint16_t subtype);
41 std::unordered_map<uint32_t, UnmarshallingFunc> unmarshallingFuncLUT_;
45 template<uint16_t commandType, uint16_t commandSubType, UnmarshallingFunc func>
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/command/
H A Drs_command_factory.cpp60 void RSCommandFactory::Register(uint16_t type, uint16_t subtype, UnmarshallingFunc func) in Register()
69 UnmarshallingFunc RSCommandFactory::GetUnmarshallingFunc(uint16_t type, uint16_t subtype) in GetUnmarshallingFunc()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/command/
H A Drs_command_factory_test.cpp45 UnmarshallingFunc func = nullptr;
65 UnmarshallingFunc func = factory.GetUnmarshallingFunc(0, 0);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/recording/
H A Ddraw_cmd.h127 …using UnmarshallingFunc = std::shared_ptr<DrawOpItem>(*)(const DrawCmdList& cmdList, void* handle); variable
131 bool Register(uint32_t type, UnmarshallingFunc func, size_t unmarshallingSize);
132 std::pair<UnmarshallingFunc, size_t> GetFuncAndSize(uint32_t type);
143 std::unordered_map<uint32_t, UnmarshallingFunc> opUnmarshallingFuncLUT_;
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/recording/
H A Ddraw_cmd.cpp316 bool UnmarshallingHelper::Register(uint32_t type, UnmarshallingHelper::UnmarshallingFunc func, size… in Register()
324 std::pair<UnmarshallingHelper::UnmarshallingFunc, size_t> UnmarshallingHelper::GetFuncAndSize(uint3… in GetFuncAndSize()