Searched refs:commandSubType (Results 1 – 7 of 7) sorted by relevance
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/command/ |
H A D | rs_node_showing_command.h | 36 constexpr static uint16_t commandSubType = GET_RENDER_PROPERTY; variable 65 using Registrar = RSCommandRegister<commandType, commandSubType, Unmarshalling>; 71 constexpr static uint16_t commandSubType = GET_RENDER_PROPERTIES; variable 97 using Registrar = RSCommandRegister<commandType, commandSubType, Unmarshalling>; 103 constexpr static uint16_t commandSubType = GET_VALUE_FRACTION; variable 129 static inline RSCommandRegister<commandType, commandSubType, Unmarshalling> registry;
|
H A D | rs_command_templates.h | 44 template<uint16_t commandType, uint16_t commandSubType, auto processFunc, typename... Params> 57 return commandSubType; in GetSubType() 94 RSMarshallingHelper::Marshalling(parcel, commandSubType) && in Marshalling() 109 static inline RSCommandRegister<commandType, commandSubType, Unmarshalling> registry;
|
H A D | rs_command_factory.h | 45 template<uint16_t commandType, uint16_t commandSubType, UnmarshallingFunc func> 50 RSCommandFactory::Instance().Register(commandType, commandSubType, func); in RSCommandRegister()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/command/ |
H A D | rs_node_showing_command.cpp | 30 RSMarshallingHelper::Marshalling(parcel, commandSubType) && in Marshalling() 62 RSMarshallingHelper::Unmarshalling(parcel, subType) && subType == commandSubType && in CheckHeader() 99 RSMarshallingHelper::Marshalling(parcel, commandSubType) && in Marshalling() 128 RSMarshallingHelper::Unmarshalling(parcel, subType) && subType == commandSubType && in CheckHeader() 166 RSMarshallingHelper::Marshalling(parcel, commandSubType) && in Marshalling() 194 RSMarshallingHelper::Unmarshalling(parcel, subType) && subType == commandSubType && in CheckHeader()
|
H A D | rs_command_factory.cpp | 47 inline uint32_t MakeKey(uint16_t commandType, uint16_t commandSubType) in MakeKey() argument 50 return ((uint32_t)commandType << 16) | commandSubType; in MakeKey()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/transaction/ |
H A D | rs_transaction_data.cpp | 218 uint16_t commandSubType = 0; in UnmarshallingCommand() local 250 if (!(parcel.ReadUint16(commandType) && parcel.ReadUint16(commandSubType))) { in UnmarshallingCommand() 253 … auto func = RSCommandFactory::Instance().GetUnmarshallingFunc(commandType, commandSubType); in UnmarshallingCommand() 260 commandType, commandSubType); in UnmarshallingCommand() 323 for (const auto& [commandType, commandSubType] : commandTypeSet) { in PrintCommandMapDesc() 324 …ring commandDesc = "(" + std::to_string(commandType) + "," + std::to_string(commandSubType) + "),"; in PrintCommandMapDesc()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/modifier/ |
H A D | rs_property.h | 241 template<uint16_t commandType, uint16_t commandSubType>
|