Lines Matching defs:value
183 IAM_STATIC ResultCode WriteUInt32ToMsg(Uint8Array *msg, uint32_t *writeIndex, uint32_t value)
185 uint32_t netOrderValue = Htonl32(value);
336 ResultCode GetAttributeUint32(const Attribute *attribute, AttributeKey key, uint32_t *value)
339 IF_TRUE_LOGE_AND_RETURN_VAL(value == NULL, INVALID_PARAMETERS);
347 *value = Ntohl32(netOrderValue);
351 ResultCode SetAttributeUint32(Attribute *attribute, AttributeKey key, const uint32_t value)
355 uint32_t netOrderValue = Htonl32(value);
371 ResultCode SetAttributeInt32(Attribute *attribute, AttributeKey key, const int32_t value)
375 return SetAttributeUint32(attribute, key, (uint32_t)value);
393 ResultCode SetAttributeUint64(Attribute *attribute, AttributeKey key, const uint64_t value)
397 uint64_t netOrderValue = Htonl64(value);