Searched refs:retValue (Results 1 - 4 of 4) sorted by relevance
/drivers/peripheral/pin_auth/hdi_service/common/inc/ |
H A D | attribute.h | 74 ResultCode GetAttributeUint32(const Attribute *attribute, AttributeKey key, uint32_t *retValue);
76 ResultCode GetAttributeInt32(const Attribute *attribute, AttributeKey key, int32_t *retValue);
78 ResultCode GetAttributeUint64(const Attribute *attribute, AttributeKey key, uint64_t *retValue);
|
/drivers/peripheral/user_auth/hdi_service/utils/inc/ |
H A D | attribute.h | 113 ResultCode GetAttributeUint32(const Attribute *attribute, AttributeKey key, uint32_t *retValue);
115 ResultCode GetAttributeInt32(const Attribute *attribute, AttributeKey key, int32_t *retValue);
117 ResultCode GetAttributeUint64(const Attribute *attribute, AttributeKey key, uint64_t *retValue);
|
/drivers/peripheral/pin_auth/hdi_service/common/src/ |
H A D | attribute.c | 129 IAM_STATIC ResultCode ReadUint32FromMsg(const Uint8Array msg, uint32_t *readIndex, uint32_t *retValue)
in ReadUint32FromMsg() argument 139 *retValue = Ntohl32(netOrderValue);
in ReadUint32FromMsg() 345 ResultCode GetAttributeInt32(const Attribute *attribute, AttributeKey key, int32_t *retValue)
in GetAttributeInt32() argument 348 IF_TRUE_LOGE_AND_RETURN_VAL(retValue == NULL, RESULT_BAD_PARAM);
in GetAttributeInt32() 350 return GetAttributeUint32(attribute, key, (uint32_t *)retValue);
in GetAttributeInt32() 360 ResultCode GetAttributeUint64(const Attribute *attribute, AttributeKey key, uint64_t *retValue)
in GetAttributeUint64() argument 363 IF_TRUE_LOGE_AND_RETURN_VAL(retValue == NULL, RESULT_BAD_PARAM);
in GetAttributeUint64() 371 *retValue = Ntohl64(netOrderValue);
in GetAttributeUint64()
|
/drivers/peripheral/user_auth/hdi_service/utils/src/ |
H A D | attribute.c | 148 IAM_STATIC ResultCode ReadUint32FromMsg(const Uint8Array msg, uint32_t *readIndex, uint32_t *retValue)
in ReadUint32FromMsg() argument 158 *retValue = Ntohl32(netOrderValue);
in ReadUint32FromMsg() 363 ResultCode GetAttributeInt32(const Attribute *attribute, AttributeKey key, int32_t *retValue)
in GetAttributeInt32() argument 366 IF_TRUE_LOGE_AND_RETURN_VAL(retValue == NULL, INVALID_PARAMETERS);
in GetAttributeInt32() 368 return GetAttributeUint32(attribute, key, (uint32_t *)retValue);
in GetAttributeInt32() 378 ResultCode GetAttributeUint64(const Attribute *attribute, AttributeKey key, uint64_t *retValue)
in GetAttributeUint64() argument 381 IF_TRUE_LOGE_AND_RETURN_VAL(retValue == NULL, INVALID_PARAMETERS);
in GetAttributeUint64() 389 *retValue = Ntohl64(netOrderValue);
in GetAttributeUint64()
|
Completed in 3 milliseconds