Lines Matching refs:name

134 static TEE_Result propget_get_property(TEE_PropSetHandle h, const char *name,  in propget_get_property()  argument
152 if (!strcmp(name, eps[n].name)) in propget_get_property()
158 res = _utee_get_property_name_to_index((unsigned long)h, name, in propget_get_property()
159 strlen(name) + 1, in propget_get_property()
191 const char *name, char *value, in TEE_GetPropertyAsString() argument
204 __utee_check_instring_annotation(name); in TEE_GetPropertyAsString()
216 res = propget_get_property(propsetOrEnumerator, name, &type, in TEE_GetPropertyAsString()
292 const char *name, bool *value) in TEE_GetPropertyAsBool() argument
299 __utee_check_instring_annotation(name); in TEE_GetPropertyAsBool()
303 res = propget_get_property(propsetOrEnumerator, name, &type, in TEE_GetPropertyAsBool()
320 const char *name, uint32_t *value) in TEE_GetPropertyAsU32() argument
327 __utee_check_instring_annotation(name); in TEE_GetPropertyAsU32()
331 res = propget_get_property(propsetOrEnumerator, name, &type, in TEE_GetPropertyAsU32()
345 const char *name, void *value, in TEE_GetPropertyAsBinaryBlock() argument
352 __utee_check_instring_annotation(name); in TEE_GetPropertyAsBinaryBlock()
356 res = propget_get_property(propsetOrEnumerator, name, &type, in TEE_GetPropertyAsBinaryBlock()
371 const char *name, TEE_UUID *value) in TEE_GetPropertyAsUUID() argument
378 __utee_check_instring_annotation(name); in TEE_GetPropertyAsUUID()
382 res = propget_get_property(propsetOrEnumerator, name, &type, in TEE_GetPropertyAsUUID()
396 const char *name, TEE_Identity *value) in TEE_GetPropertyAsIdentity() argument
403 __utee_check_instring_annotation(name); in TEE_GetPropertyAsIdentity()
407 res = propget_get_property(propsetOrEnumerator, name, &type, in TEE_GetPropertyAsIdentity()
474 void *name, uint32_t *name_len) in TEE_GetPropertyName() argument
487 __utee_check_outstring_annotation(name, name_len); in TEE_GetPropertyName()
495 str = eps[pe->idx].name; in TEE_GetPropertyName()
496 bufferlen = strlcpy(name, str, *name_len) + 1; in TEE_GetPropertyName()
502 pe->idx - eps_len, name, name_len, in TEE_GetPropertyName()