Lines Matching refs:value

93 		l = strlen(ep->value) + 1;  in propget_get_ext_prop()
103 if (!_base64_dec(ep->value, strlen(ep->value), buf, &l) && in propget_get_ext_prop()
123 memcpy(buf, ep->value, l); in propget_get_ext_prop()
191 const char *name, char *value, in TEE_GetPropertyAsString() argument
205 __utee_check_outstring_annotation(value, value_len); in TEE_GetPropertyAsString()
236 l = strlcpy(value, (bool_val ? "true" : "false"), *value_len); in TEE_GetPropertyAsString()
241 l = snprintf(value, *value_len, "%u", uint32_val); in TEE_GetPropertyAsString()
245 l = snprintk(value, *value_len, "%pUl", tmp_buf); in TEE_GetPropertyAsString()
250 l = snprintk(value, *value_len, "%u:%pUl", in TEE_GetPropertyAsString()
256 l = strlcpy(value, tmp_buf, *value_len); in TEE_GetPropertyAsString()
261 if (!_base64_enc(tmp_buf, tmp_len, value, &l) && in TEE_GetPropertyAsString()
292 const char *name, bool *value) in TEE_GetPropertyAsBool() argument
300 __utee_check_out_annotation(value, sizeof(*value)); in TEE_GetPropertyAsBool()
304 value, &bool_len); in TEE_GetPropertyAsBool()
320 const char *name, uint32_t *value) in TEE_GetPropertyAsU32() argument
328 __utee_check_out_annotation(value, sizeof(*value)); in TEE_GetPropertyAsU32()
332 value, &uint32_len); in TEE_GetPropertyAsU32()
345 const char *name, void *value, in TEE_GetPropertyAsBinaryBlock() argument
353 __utee_check_outbuf_annotation(value, value_len); in TEE_GetPropertyAsBinaryBlock()
357 value, value_len); in TEE_GetPropertyAsBinaryBlock()
371 const char *name, TEE_UUID *value) in TEE_GetPropertyAsUUID() argument
379 __utee_check_out_annotation(value, sizeof(*value)); in TEE_GetPropertyAsUUID()
383 value, &uuid_len); in TEE_GetPropertyAsUUID()
396 const char *name, TEE_Identity *value) in TEE_GetPropertyAsIdentity() argument
404 __utee_check_out_annotation(value, sizeof(*value)); in TEE_GetPropertyAsIdentity()
408 value, &identity_len); in TEE_GetPropertyAsIdentity()