Home
last modified time | relevance | path

Searched refs:commandType (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/command/
H A Drs_node_showing_command.h35 constexpr static uint16_t commandType = RS_NODE_SYNCHRONOUS_READ_PROPERTY; variable
65 using Registrar = RSCommandRegister<commandType, commandSubType, Unmarshalling>;
70 constexpr static uint16_t commandType = RS_NODE_SYNCHRONOUS_READ_PROPERTY; variable
97 using Registrar = RSCommandRegister<commandType, commandSubType, Unmarshalling>;
102 constexpr static uint16_t commandType = RS_NODE_SYNCHRONOUS_GET_VALUE_FRACTION; variable
129 static inline RSCommandRegister<commandType, commandSubType, Unmarshalling> registry;
H A Drs_command_templates.h44 template<uint16_t commandType, uint16_t commandSubType, auto processFunc, typename... Params>
53 return commandType; in GetType()
93 return RSMarshallingHelper::Marshalling(parcel, commandType) && in Marshalling()
109 static inline RSCommandRegister<commandType, commandSubType, Unmarshalling> registry;
H A Drs_command_factory.h45 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 Drs_node_showing_command.cpp29 return RSMarshallingHelper::Marshalling(parcel, commandType) && in Marshalling()
61 return RSMarshallingHelper::Unmarshalling(parcel, type) && type == commandType && in CheckHeader()
98 bool result = RSMarshallingHelper::Marshalling(parcel, commandType) && in Marshalling()
127 return RSMarshallingHelper::Unmarshalling(parcel, type) && type == commandType && in CheckHeader()
165 bool result = RSMarshallingHelper::Marshalling(parcel, commandType) && in Marshalling()
193 return RSMarshallingHelper::Unmarshalling(parcel, type) && type == commandType && in CheckHeader()
H A Drs_command_factory.cpp47 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/ability/ability_lite/frameworks/abilitymgr_lite/src/
H A Dabilityms_client.cpp74 …lient::ScheduleAms(const Want *want, uint64_t token, const SvcIdentity *sid, int commandType) const in ScheduleAms()
91 if (commandType == ATTACH_BUNDLE) { in ScheduleAms()
100 return amsProxy_->Invoke(amsProxy_, commandType, &req, nullptr, Callback); in ScheduleAms()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/transaction/
H A Drs_transaction_data.cpp217 uint16_t commandType = 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 …std::string commandDesc = "(" + std::to_string(commandType) + "," + std::to_string(commandSubType)… in PrintCommandMapDesc()
/ohos5.0/base/telephony/core_service/services/sim/src/
H A Dstk_controller.cpp337 std::string commandType = cmdData.substr(STK_CMD_TYPE_INDEX, STK_CMD_TYPE_LEN); in CheckIsBipCmd() local
338 if (commandType == STK_BIP_CMD_OPEN_CHANNEL || commandType == STK_BIP_CMD_SEND_DATA || in CheckIsBipCmd()
339 commandType == STK_BIP_CMD_RECEVIE_DATA || commandType == STK_BIP_CMD_GET_CHANNEL_STATUS || in CheckIsBipCmd()
340 commandType == STK_BIP_CMD_CLOSE_CHANNEL) { in CheckIsBipCmd()
/ohos5.0/foundation/ability/ability_lite/frameworks/abilitymgr_lite/include/
H A Dabilityms_client.h38 … int ScheduleAms(const Want *want, uint64_t token, const SvcIdentity *sid, int commandType) const;
/ohos5.0/foundation/arkui/ace_engine/interfaces/inner_api/ace/stylus/
H A Dstylus_detector_interface.h55 CommandType commandType; member
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/modifier/
H A Drs_property.h241 template<uint16_t commandType, uint16_t commandSubType>