Lines Matching defs:value
164 IAM_STATIC ResultCode WriteUInt32ToMsg(Uint8Array *msg, uint32_t *writeIndex, uint32_t value)
166 uint32_t netOrderValue = Htonl32(value);
318 ResultCode GetAttributeUint32(const Attribute *attribute, AttributeKey key, uint32_t *value)
321 IF_TRUE_LOGE_AND_RETURN_VAL(value == NULL, RESULT_BAD_PARAM);
329 *value = Ntohl32(netOrderValue);
333 ResultCode SetAttributeUint32(Attribute *attribute, AttributeKey key, const uint32_t value)
337 uint32_t netOrderValue = Htonl32(value);
353 ResultCode SetAttributeInt32(Attribute *attribute, AttributeKey key, const int32_t value)
357 return SetAttributeUint32(attribute, key, (uint32_t)value);
375 ResultCode SetAttributeUint64(Attribute *attribute, AttributeKey key, const uint64_t value)
379 uint64_t netOrderValue = Htonl64(value);