Lines Matching refs:tmp_buf
197 void *tmp_buf = 0; in TEE_GetPropertyAsString() local
210 tmp_buf = TEE_Malloc(tmp_len, TEE_USER_MEM_HINT_NO_FILL_ZERO); in TEE_GetPropertyAsString()
211 if (!tmp_buf) { in TEE_GetPropertyAsString()
217 tmp_buf, &tmp_len); in TEE_GetPropertyAsString()
235 bool_val = *((bool *)tmp_buf); in TEE_GetPropertyAsString()
240 uint32_val = *((uint32_t *)tmp_buf); in TEE_GetPropertyAsString()
245 l = snprintk(value, *value_len, "%pUl", tmp_buf); in TEE_GetPropertyAsString()
249 p_identity_val = ((TEE_Identity *)tmp_buf); 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()
281 if (tmp_buf) in TEE_GetPropertyAsString()
282 TEE_Free(tmp_buf); in TEE_GetPropertyAsString()