Lines Matching full:name

142 static TEE_Result propget_get_property(TEE_PropSetHandle h, const char *name,  in propget_get_property()  argument
160 if (!strcmp(name, eps[n].name)) in propget_get_property()
165 /* get the index from the name */ in propget_get_property()
166 res = _utee_get_property_name_to_index((unsigned long)h, name, in propget_get_property()
167 strlen(name) + 1, in propget_get_property()
199 const char *name, char *value, in TEE_GetPropertyAsString() argument
212 __utee_check_instring_annotation(name); in TEE_GetPropertyAsString()
224 res = propget_get_property(propsetOrEnumerator, name, &type, in TEE_GetPropertyAsString()
300 const char *name, char *valueBuffer, in __GP11_TEE_GetPropertyAsString() argument
308 res = TEE_GetPropertyAsString(propsetOrEnumerator, name, valueBuffer, in __GP11_TEE_GetPropertyAsString()
315 const char *name, bool *value) in TEE_GetPropertyAsBool() argument
322 __utee_check_instring_annotation(name); in TEE_GetPropertyAsBool()
326 res = propget_get_property(propsetOrEnumerator, name, &type, in TEE_GetPropertyAsBool()
343 const char *name, uint32_t *value) in TEE_GetPropertyAsU32() argument
350 __utee_check_instring_annotation(name); in TEE_GetPropertyAsU32()
354 res = propget_get_property(propsetOrEnumerator, name, &type, in TEE_GetPropertyAsU32()
368 const char *name, uint64_t *value) in TEE_GetPropertyAsU64() argument
375 __utee_check_instring_annotation(name); in TEE_GetPropertyAsU64()
379 res = propget_get_property(propsetOrEnumerator, name, &type, in TEE_GetPropertyAsU64()
394 const char *name, void *value, in __GP11_TEE_GetPropertyAsBinaryBlock() argument
401 __utee_check_instring_annotation(name); in __GP11_TEE_GetPropertyAsBinaryBlock()
405 res = propget_get_property(propsetOrEnumerator, name, &type, in __GP11_TEE_GetPropertyAsBinaryBlock()
420 const char *name, void *value, in TEE_GetPropertyAsBinaryBlock() argument
428 res = __GP11_TEE_GetPropertyAsBinaryBlock(propsetOrEnumerator, name, in TEE_GetPropertyAsBinaryBlock()
435 const char *name, TEE_UUID *value) in TEE_GetPropertyAsUUID() argument
442 __utee_check_instring_annotation(name); in TEE_GetPropertyAsUUID()
446 res = propget_get_property(propsetOrEnumerator, name, &type, in TEE_GetPropertyAsUUID()
460 const char *name, TEE_Identity *value) in TEE_GetPropertyAsIdentity() argument
467 __utee_check_instring_annotation(name); in TEE_GetPropertyAsIdentity()
471 res = propget_get_property(propsetOrEnumerator, name, &type, in TEE_GetPropertyAsIdentity()
538 void *name, uint32_t *name_len) in __GP11_TEE_GetPropertyName() argument
551 __utee_check_gp11_outstring_annotation(name, name_len); in __GP11_TEE_GetPropertyName()
559 str = eps[pe->idx].name; in __GP11_TEE_GetPropertyName()
560 bufferlen = strlcpy(name, str, *name_len) + 1; in __GP11_TEE_GetPropertyName()
566 pe->idx - eps_len, name, name_len, in __GP11_TEE_GetPropertyName()