Lines Matching refs:template_size
314 size_t template_size = 0; in entry_create_object() local
340 template_size = sizeof(*template) + template->attrs_size; in entry_create_object()
346 rc = create_attributes_from_template(&head, template, template_size, in entry_create_object()
988 size_t template_size = 0; in entry_set_attribute_value() local
1047 template_size = sizeof(*template) + template->attrs_size; in entry_set_attribute_value()
1054 rc = create_attributes_from_template(&head, template, template_size, in entry_set_attribute_value()
1067 template_size = sizeof(*obj->attributes) + obj->attributes->attrs_size; in entry_set_attribute_value()
1068 head_new = TEE_Malloc(template_size, TEE_MALLOC_FILL_ZERO); in entry_set_attribute_value()
1074 TEE_MemMove(head_new, obj->attributes, template_size); in entry_set_attribute_value()
1130 size_t template_size = 0; in entry_copy_object() local
1189 template_size = sizeof(*template) + template->attrs_size; in entry_copy_object()
1196 rc = create_attributes_from_template(&head, template, template_size, in entry_copy_object()
1235 template_size = sizeof(*obj->attributes) + obj->attributes->attrs_size; in entry_copy_object()
1236 head_new = TEE_Malloc(template_size, TEE_MALLOC_FILL_ZERO); in entry_copy_object()
1242 TEE_MemMove(head_new, obj->attributes, template_size); in entry_copy_object()