/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/command/ |
H A D | rs_node_showing_command.h | 35 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 D | rs_command_templates.h | 44 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 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 | 29 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 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/ability/ability_lite/frameworks/abilitymgr_lite/src/ |
H A D | abilityms_client.cpp | 74 …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 D | rs_transaction_data.cpp | 217 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 D | stk_controller.cpp | 337 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 D | abilityms_client.h | 38 … 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 D | stylus_detector_interface.h | 55 CommandType commandType; member
|
/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>
|