Searched refs:cmdListData (Results 1 – 5 of 5) sorted by relevance
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsmarshallinghelper_fuzzer/ |
H A D | rsmarshallinghelper_fuzzer.cpp | 221 std::pair<const void*, size_t> cmdListData; in DoMarshallingHelper003() local 222 cmdListData.first = static_cast<const void*>(dataText); in DoMarshallingHelper003() 223 cmdListData.second = length; in DoMarshallingHelper003() 225 …static std::shared_ptr<MaskCmdList> maskCmdList = MaskCmdList::CreateFromData(cmdListData, isCopy); in DoMarshallingHelper003() 437 std::pair<const void*, size_t> cmdListData; in DoMarshallingHelper011() local 438 cmdListData.first = static_cast<const void*>(dataText); in DoMarshallingHelper011() 439 cmdListData.second = length; in DoMarshallingHelper011() 441 …static std::shared_ptr<DrawCmdList> drawCmdList = DrawCmdList::CreateFromData(cmdListData, isCopy); in DoMarshallingHelper011()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/recording/ |
H A D | cmd_list.cpp | 27 CmdList::CmdList(const CmdListData& cmdListData) in CmdList() argument 29 opAllocator_.BuildFromDataWithCopy(cmdListData.first, cmdListData.second); in CmdList()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/ |
H A D | rs_marshalling_helper.cpp | 1572 auto cmdListData = val->GetData(); in Marshalling() local 1573 bool ret = parcel.WriteInt32(cmdListData.second); in Marshalling() 1574 if (cmdListData.second > LARGE_MALLOC) { in Marshalling() 1575 …("RSMarshallingHelper::Marshalling this time malloc memory, size:%{public}zu", cmdListData.second); in Marshalling() 1589 if (cmdListData.second == 0) { in Marshalling() 1593 ret &= RSMarshallingHelper::WriteToParcel(parcel, cmdListData.first, cmdListData.second); in Marshalling() 1968 auto cmdListData = val->GetData(); in Marshalling() local 1969 bool ret = parcel.WriteInt32(cmdListData.second); in Marshalling() 1970 if (cmdListData.second == 0 || !ret) { in Marshalling() 1975 ret = RSMarshallingHelper::WriteToParcel(parcel, cmdListData.first, cmdListData.second); in Marshalling()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/recording/ |
H A D | cmd_list.h | 86 explicit CmdList(const CmdListData& cmdListData);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/recording/ |
H A D | draw_cmd_test.cpp | 66 CmdListData cmdListData = { nullptr, 0 }; variable 67 newDrawCmdList = DrawCmdList::CreateFromData(cmdListData, false);
|