/ohos5.0/drivers/peripheral/pin_auth/hdi_service/common/inc/ |
H A D | attribute.h | 65 typedef void Attribute; typedef 67 Attribute *CreateEmptyAttribute(void); 68 Attribute *CreateAttributeFromSerializedMsg(const Uint8Array msg); 69 void FreeAttribute(Attribute **attribute); 71 ResultCode GetAttributeSerializedMsg(const Attribute *attribute, Uint8Array *retMsg); 73 ResultCode GetAttributeLength(const Attribute *attribute, AttributeKey key, uint32_t *len); 74 ResultCode GetAttributeUint32(const Attribute *attribute, AttributeKey key, uint32_t *retValue); 75 ResultCode SetAttributeUint32(Attribute *attribute, AttributeKey key, const uint32_t value); 76 ResultCode GetAttributeInt32(const Attribute *attribute, AttributeKey key, int32_t *retValue); 77 ResultCode SetAttributeInt32(Attribute *attribute, AttributeKey key, const int32_t value); [all …]
|
/ohos5.0/drivers/peripheral/user_auth/hdi_service/utils/inc/ |
H A D | attribute.h | 103 typedef void Attribute; typedef 107 Attribute *CreateEmptyAttribute(void); 108 Attribute *CreateAttributeFromSerializedMsg(const Uint8Array msg); 109 void FreeAttribute(Attribute **attribute); 111 ResultCode GetAttributeSerializedMsg(const Attribute *attribute, Uint8Array *retMsg); 113 ResultCode GetAttributeUint32(const Attribute *attribute, AttributeKey key, uint32_t *retValue); 114 ResultCode SetAttributeUint32(Attribute *attribute, AttributeKey key, const uint32_t value); 115 ResultCode GetAttributeInt32(const Attribute *attribute, AttributeKey key, int32_t *retValue); 116 ResultCode SetAttributeInt32(Attribute *attribute, AttributeKey key, const int32_t value); 117 ResultCode GetAttributeUint64(const Attribute *attribute, AttributeKey key, uint64_t *retValue); [all …]
|
/ohos5.0/foundation/ability/idl_tool/idl_tool_2/ast/ |
H A D | ast_attribute.h | 25 using Attribute = uint32_t; 26 static constexpr Attribute NONE = 0U; 27 static constexpr Attribute MINI = 0x1U; 28 static constexpr Attribute LITE = 0x1U << 1; 29 static constexpr Attribute FULL = 0x1U << 2; 30 static constexpr Attribute ONEWAY = 0x1U << 3; 31 static constexpr Attribute CALLBACK = 0x1U << 4; 41 inline void SetValue(Attribute value) in SetValue() 46 inline Attribute GetValue() const in GetValue() 56 bool HasValue(Attribute attr) const in HasValue() [all …]
|
/ohos5.0/drivers/hdf_core/framework/tools/hdi-gen/ast/ |
H A D | ast_attribute.h | 18 using Attribute = uint32_t; 19 static constexpr Attribute NONE = 0U; 20 static constexpr Attribute MINI = 0x1U; 21 static constexpr Attribute LITE = 0x1U << 1; 22 static constexpr Attribute FULL = 0x1U << 2; 23 static constexpr Attribute ONEWAY = 0x1U << 3; 24 static constexpr Attribute CALLBACK = 0x1U << 4; 32 inline void SetValue(Attribute value) in SetValue() 37 inline Attribute GetValue() const in GetValue() 42 bool HasValue(Attribute attr) const in HasValue() [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/declaration/common/ |
H A D | attribute.h | 39 struct Attribute { struct 54 struct CommonAttribute : Attribute { argument 63 struct CommonDisabledAttribute : Attribute { 67 struct CommonFocusableAttribute : Attribute { 71 struct CommonTouchableAttribute : Attribute { 75 struct CommonDataAttribute : Attribute { 79 struct CommonClickEffectAttribute : Attribute { 83 struct CommonRenderAttribute : Attribute { 89 struct CommonMultimodalAttribute : Attribute {
|
/ohos5.0/foundation/multimedia/av_codec/test/unittest/hls_test/ |
H A D | hls_tags_unit_test.cpp | 83 Attribute attr("name", "value"); 89 Attribute attr("name", "123"); 101 Attribute attr("name", "3.14"); 107 Attribute attr("name", "0x48656C6C6F"); 121 Attribute attr("name", "10@100"); 137 Attribute attr("name", "1920x1080"); 145 Attribute attr("name", "\"quoted\""); 151 Attribute attr("name", "\"\""); 157 Attribute attr("name", "quoted"); // No quotes 163 Attribute attr("name", "\"quo\\\"ted\""); [all …]
|
/ohos5.0/foundation/multimedia/media_foundation/engine/plugin/plugins/source/http_source/hls/ |
H A D | hls_tags.cpp | 51 Attribute::Attribute(std::string name, std::string value) in Attribute() function in OHOS::Media::Plugin::HttpPlugin::Attribute 56 uint64_t Attribute::Decimal() const in Decimal() 65 double Attribute::FloatingPoint() const in FloatingPoint() 74 std::vector<uint8_t> Attribute::HexSequence() const in HexSequence() 107 std::pair<int, int> Attribute::GetResolution() const in GetResolution() 124 std::string Attribute::GetName() const in GetName() 129 Attribute Attribute::UnescapeQuotes() const in UnescapeQuotes() 134 std::string Attribute::QuotedString() const in QuotedString() 171 const Attribute& SingleValueTag::GetValue() const in GetValue() 263 std::shared_ptr<Attribute> attr; in ParseAttributes() [all …]
|
H A D | hls_tags.h | 28 class Attribute { 30 Attribute(std::string name, std::string value); 32 Attribute UnescapeQuotes() const; 94 const Attribute& GetValue() const; 96 Attribute attr_; 103 std::shared_ptr<Attribute> GetAttributeByName(const char* name) const; 104 void AddAttribute(std::shared_ptr<Attribute>& attr); 107 std::list<std::shared_ptr<Attribute>> attributes;
|
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/hls/ |
H A D | hls_tags.cpp | 51 Attribute::Attribute(std::string name, std::string value) in Attribute() function in OHOS::Media::Plugins::HttpPlugin::Attribute 56 uint64_t Attribute::Decimal() const in Decimal() 65 double Attribute::FloatingPoint() const in FloatingPoint() 74 std::vector<uint8_t> Attribute::HexSequence() const in HexSequence() 107 std::pair<int, int> Attribute::GetResolution() const in GetResolution() 124 std::string Attribute::GetName() const in GetName() 129 Attribute Attribute::UnescapeQuotes() const in UnescapeQuotes() 134 std::string Attribute::QuotedString() const in QuotedString() 166 const Attribute& SingleValueTag::GetValue() const in GetValue() 259 std::shared_ptr<Attribute> attr; in ParseAttributes() [all …]
|
H A D | hls_tags.h | 28 class Attribute { 30 Attribute(std::string name, std::string value); 32 Attribute UnescapeQuotes() const; 94 const Attribute& GetValue() const; 96 Attribute attr_; 103 std::shared_ptr<Attribute> GetAttributeByName(const char* name) const; 104 void AddAttribute(std::shared_ptr<Attribute>& attr); 107 std::list<std::shared_ptr<Attribute>> attributes;
|
/ohos5.0/drivers/peripheral/pin_auth/hdi_service/main/inc/ |
H A D | executor_func_common.h | 74 int32_t SetBufferToAttribute(Attribute *attribute, AttributeKey key, Buffer *buf); 75 Buffer *GetBufferFromAttribute(const Attribute *attribute, AttributeKey key, uint32_t size); 76 Attribute *GetAttributeDataBase(uint64_t scheduleId, RemotePinMsgId msgId); 77 int32_t FormatTlvMsg(const Attribute *data, const KeyPair *keyPair, uint8_t *msg, uint32_t *msgSize… 79 …uint64_t scheduleId, Attribute **data, const Buffer *pubKey, const uint8_t *msg, uint32_t msgSize); 80 int32_t CheckAttributeDataBase(const Attribute *data, uint64_t scheduleId, RemotePinMsgId msgId, ui… 82 bool SetResultDataInfo(Attribute *attribute, int32_t resultCode, uint64_t templateId, Buffer *rootS…
|
/ohos5.0/drivers/peripheral/pin_auth/hdi_service/main/src/ |
H A D | executor_func_common.c | 28 int32_t SetBufferToAttribute(Attribute *attribute, AttributeKey key, Buffer *buf) in SetBufferToAttribute() 71 Buffer *GetBufferFromAttribute(const Attribute *attribute, AttributeKey key, uint32_t size) in GetBufferFromAttribute() 76 Attribute *GetAttributeDataBase(uint64_t scheduleId, RemotePinMsgId msgId) in GetAttributeDataBase() 78 Attribute *attribute = CreateEmptyAttribute(); in GetAttributeDataBase() 121 Attribute *attribute = NULL; in GetRootMsg() 172 Attribute *attribute = CreateEmptyAttribute(); in FormatTlvMsg() 198 static Attribute *GetRootAttributeFromTlv(const uint8_t *msg, uint32_t msgSize) in GetRootAttributeFromTlv() 204 Attribute *attributeTlv = CreateAttributeFromSerializedMsg(uint8Array); in GetRootAttributeFromTlv() 218 Attribute *attributeRoot = CreateAttributeFromSerializedMsg(uint8Array); in GetRootAttributeFromTlv() 223 static bool CheckScheduleIdOfAttribute(uint64_t scheduleId, const Attribute *data) in CheckScheduleIdOfAttribute() [all …]
|
H A D | verifier_func.c | 132 Attribute *attribute = NULL; in GetAuthInfoFromSchedule() 160 static bool SetVerifyAckDataSalt(Attribute *attribute) in SetVerifyAckDataSalt() 184 static bool SetVerifyAckDataPinParam(Attribute *attribute) in SetVerifyAckDataPinParam() 223 static Attribute *GetVerifyAckData() in GetVerifyAckData() 225 …Attribute *attribute = GetAttributeDataBase(g_verifierSchedule->scheduleId, REMOTE_PIN_VERIFIER_AC… in GetVerifyAckData() 247 … Attribute *attribute = GetAttributeDataBase(g_verifierSchedule->scheduleId, REMOTE_PIN_MSG_NONE); in GetResultTlv() 356 Attribute *dataIn = NULL; in DoHandleCollectorSync() 372 Attribute *dataOut = GetVerifyAckData(); in DoHandleCollectorSync() 397 static bool GetAesGcmParam(AesGcmParam *aesGcmParam, const Attribute *attribute) in GetAesGcmParam() 422 static Buffer *GetPinData(const Attribute *attribute) in GetPinData() [all …]
|
/ohos5.0/drivers/peripheral/pin_auth/hdi_service/common/src/ |
H A D | attribute.c | 245 Attribute *CreateEmptyAttribute(void) in CreateEmptyAttribute() 254 Attribute *CreateAttributeFromSerializedMsg(const Uint8Array msg) in CreateAttributeFromSerializedMsg() 258 Attribute *attribute = CreateEmptyAttribute(); in CreateAttributeFromSerializedMsg() 267 FreeAttribute((Attribute **)&attribute); in CreateAttributeFromSerializedMsg() 274 ResultCode GetAttributeSerializedMsg(const Attribute *attributePublic, Uint8Array *retMsg) in GetAttributeSerializedMsg() 306 void FreeAttribute(Attribute **attribute) in FreeAttribute() 318 ResultCode GetAttributeUint32(const Attribute *attribute, AttributeKey key, uint32_t *value) in GetAttributeUint32() 333 ResultCode SetAttributeUint32(Attribute *attribute, AttributeKey key, const uint32_t value) in SetAttributeUint32() 353 ResultCode SetAttributeInt32(Attribute *attribute, AttributeKey key, const int32_t value) in SetAttributeInt32() 375 ResultCode SetAttributeUint64(Attribute *attribute, AttributeKey key, const uint64_t value) in SetAttributeUint64() [all …]
|
/ohos5.0/drivers/peripheral/user_auth/hdi_service/coauth/src/ |
H A D | executor_message.c | 70 Attribute *dataAndSignAttribute = CreateEmptyAttribute(); in GetAttributeDataAndSignTlv() 122 Attribute *rootAttribute = CreateEmptyAttribute(); in GetAttributeExecutorMsg() 235 Attribute *attribute = NULL; in CreateAttributeFromDataAndSignTlv() 270 Attribute *attribute = NULL; in CreateAttributeFromExecutorMsg() 410 const Uint64Array *templateIds, Attribute *attribute) in SetExecutorMsgToAttribute() 447 Attribute *attribute = CreateEmptyAttribute(); in CreateExecutorMsg() 665 Attribute *attribute = CreateAttributeFromSerializedMsg(tlv); in GetExecutorInfoHal() 771 const Uint8Array challenge, Attribute *attribute) in SetExecutorCollectMsgToAttribute() 825 Attribute *attribute = CreateEmptyAttribute(); in CreateExecutorCollectMsg() 1085 Attribute *attribute = CreateEmptyAttribute(); in GetExecutorInfoMsg() [all …]
|
/ohos5.0/drivers/peripheral/user_auth/hdi_service/utils/src/ |
H A D | attribute.c | 222 IAM_STATIC ResultCode ParseAttributeSerializedMsg(Attribute *attribute, const Uint8Array msg) in ParseAttributeSerializedMsg() 264 Attribute *CreateEmptyAttribute(void) in CreateEmptyAttribute() 273 Attribute *CreateAttributeFromSerializedMsg(const Uint8Array msg) in CreateAttributeFromSerializedMsg() 277 Attribute *attribute = CreateEmptyAttribute(); in CreateAttributeFromSerializedMsg() 286 FreeAttribute((Attribute **)&attribute); in CreateAttributeFromSerializedMsg() 293 ResultCode GetAttributeSerializedMsg(const Attribute *attributePublic, Uint8Array *retMsg) in GetAttributeSerializedMsg() 325 void FreeAttribute(Attribute **attribute) in FreeAttribute() 337 ResultCode GetAttributeUint32(const Attribute *attribute, AttributeKey key, uint32_t *value) in GetAttributeUint32() 352 ResultCode SetAttributeUint32(Attribute *attribute, AttributeKey key, const uint32_t value) in SetAttributeUint32() 372 ResultCode SetAttributeInt32(Attribute *attribute, AttributeKey key, const int32_t value) in SetAttributeInt32() [all …]
|
/ohos5.0/drivers/peripheral/user_auth/test/unittest/attribute_test/ |
H A D | attribute_test.cpp | 73 Attribute *attribute = CreateEmptyAttribute(); 85 Attribute *attribute = nullptr; 97 Attribute *attribute = CreateEmptyAttribute(); 118 Attribute *attribute = CreateEmptyAttribute(); 136 Attribute *attribute = CreateEmptyAttribute(); 157 Attribute *attribute = CreateEmptyAttribute(); 175 Attribute *attribute = CreateEmptyAttribute(); 196 Attribute *attribute = CreateEmptyAttribute(); 214 Attribute *attribute = CreateEmptyAttribute(); 236 Attribute *attribute = CreateEmptyAttribute(); [all …]
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.1.3.1/ |
H A D | changelogs-contacts.md | 23 ## Mailbox Attribute 27 ## Event Attribute 31 ## IM Attribute 49 ## Phone Number Attribute 57 ## Address Attribute 61 ## Relationship Attribute 69 ## SIP Address Attribute
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-js/ |
H A D | js-components-svg-common-attributes.md | 10 …; | black | No| Fill color of an element using the shorthand attribute. Attribute animations are s… 11 …. The value **1** means opaque, and **0** means completely transparent. Attribute animations are s… 13 …. The value **1** means opaque, and **0** means completely transparent. Attribute animations are s… 14 | stroke | <color> | - | No| Color of the stroke. Attribute animations are supported.| 16 …ngth> | 0 | No| Offset for rendering the associated dash line array. Attribute animations are s… 19 … number | 4 | No| Limit value when the sharp angle is drawn as a miter. Attribute animations are s… 20 …. The value **1** means opaque, and **0** means completely transparent. Attribute animations are s… 21 | stroke-width | <length> | 1px | No| Stroke width. Attribute animations are supported.|
|
H A D | js-components-svg-rect.md | 27 | width | <length>\|<percentage> | 0 | No| Width of the rectangle. Attribute animations… 28 | height | <length>\|<percentage> | 0 | No| Height of the rectangle. Attribute animatio… 29 …e> | 0 | No| X-coordinate of the upper left corner of the rectangle. Attribute animations are s… 30 …e> | 0 | No| Y-coordinate of the upper left corner of the rectangle. Attribute animations are s… 31 …0 | No| Radius of the rectangle rounded corner in the x-axis direction. Attribute animations are s… 32 …0 | No| Radius of the rectangle rounded corner in the y-axis direction. Attribute animations are s…
|
H A D | js-components-svg-ellipse.md | 27 | cx | <length>\|<percentage> | 0 | No| X-coordinate of the oval shape. Attribute anima… 28 | cy | <length>\|<percentage> | 0 | No| Y-coordinate of the oval shape. Attribute anima… 29 …;\|<percentage> | 0 | No| Radius of the oval shape on the x-axis. Attribute animations are s… 30 …;\|<percentage> | 0 | No| Radius of the oval shape on the y-axis. Attribute animations are s…
|
/ohos5.0/drivers/peripheral/user_auth/test/unittest/co_auth/ |
H A D | executor_message_test.cpp | 88 Attribute *attribute = CreateEmptyAttribute(); 124 Attribute *attribute = CreateEmptyAttribute(); 174 Attribute *attribute = CreateEmptyAttribute(); 198 Attribute *retAttribute = CreateAttributeFromDataAndSignTlv(retInfo, signParam); 206 Attribute *attribute = CreateEmptyAttribute(); 219 Attribute *msgAttribute = CreateAttributeFromSerializedMsg(retInfo); 239 Attribute *retAttribute = CreateAttributeFromExecutorMsg(msg, signParam); 242 Attribute *attribute = CreateEmptyAttribute(); 265 Attribute *attribute = CreateEmptyAttribute(); 279 Attribute *attribute = CreateEmptyAttribute(); [all …]
|
/ohos5.0/foundation/ability/idl_tool/idl_tool_2/util/ |
H A D | options.h | 41 struct Attribute { struct 42 Attribute() : doHitrace(false), doLog(false) {} in Attribute() argument 196 inline Attribute GetAttribute() const in GetAttribute() 216 attribute(Attribute()), in Options() 305 Attribute attribute;
|
/ohos5.0/foundation/multimedia/player_framework/services/utils/include/ |
H A D | task_queue.h | 99 struct Attribute { 107 virtual Attribute GetAttribute() const = 0; 118 …TaskHandler(std::function<T(void)> task, ITaskHandler::Attribute attr = {}) : task_(task), attribu… 188 ITaskHandler::Attribute GetAttribute() const override 227 ITaskHandler::Attribute attribute_; // task execute attribute.
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/properties/ |
H A D | state_attributes.h | 44 template<class AttributeID, class Attribute> 48 StateAttributeValue(AttributeID id, Attribute value) in StateAttributeValue() 52 Attribute value_;
|