Lines Matching refs:value_len
200 size_t *value_len) in TEE_GetPropertyAsString() argument
213 __utee_check_outstring_annotation(value, value_len); in TEE_GetPropertyAsString()
215 tmp_len = *value_len; in TEE_GetPropertyAsString()
236 *value_len = tmp_len; in TEE_GetPropertyAsString()
244 l = strlcpy(value, (bool_val ? "true" : "false"), *value_len); in TEE_GetPropertyAsString()
249 l = snprintf(value, *value_len, "%u", uint32_val); in TEE_GetPropertyAsString()
253 l = snprintk(value, *value_len, "%pUl", tmp_buf); in TEE_GetPropertyAsString()
258 l = snprintk(value, *value_len, "%u:%pUl", in TEE_GetPropertyAsString()
264 l = strlcpy(value, tmp_buf, *value_len); in TEE_GetPropertyAsString()
268 l = *value_len; /* l includes the zero-termination */ in TEE_GetPropertyAsString()
270 l <= *value_len) { in TEE_GetPropertyAsString()
284 if (l > *value_len) in TEE_GetPropertyAsString()
286 *value_len = l; in TEE_GetPropertyAsString()
395 uint32_t *value_len) in __GP11_TEE_GetPropertyAsBinaryBlock() argument
402 __utee_check_gp11_outbuf_annotation(value, value_len); in __GP11_TEE_GetPropertyAsBinaryBlock()
406 value, value_len); in __GP11_TEE_GetPropertyAsBinaryBlock()
421 size_t *value_len) in TEE_GetPropertyAsBinaryBlock() argument
426 __utee_check_outbuf_annotation(value, value_len); in TEE_GetPropertyAsBinaryBlock()
427 l = *value_len; in TEE_GetPropertyAsBinaryBlock()
430 *value_len = l; in TEE_GetPropertyAsBinaryBlock()