Lines Matching refs:obj_attrs

21 enum pkcs11_rc init_attributes_head(struct obj_attrs **head)  in init_attributes_head()
30 enum pkcs11_rc add_attribute(struct obj_attrs **head, uint32_t attribute, in add_attribute()
33 size_t buf_len = sizeof(struct obj_attrs) + (*head)->attrs_size; in add_attribute()
60 static enum pkcs11_rc _remove_attribute(struct obj_attrs **head, in _remove_attribute()
63 struct obj_attrs *h = *head; in _remove_attribute()
69 cur = (char *)h + sizeof(struct obj_attrs); in _remove_attribute()
97 enum pkcs11_rc remove_empty_attribute(struct obj_attrs **head, in remove_empty_attribute()
103 void get_attribute_ptrs(struct obj_attrs *head, uint32_t attribute, in get_attribute_ptrs()
106 char *cur = (char *)head + sizeof(struct obj_attrs); in get_attribute_ptrs()
152 enum pkcs11_rc get_attribute_ptr(struct obj_attrs *head, uint32_t attribute, in get_attribute_ptr()
168 enum pkcs11_rc get_attribute(struct obj_attrs *head, uint32_t attribute, in get_attribute()
194 enum pkcs11_rc set_attribute(struct obj_attrs **head, uint32_t attribute, in set_attribute()
206 enum pkcs11_rc modify_attributes_list(struct obj_attrs **dst, in modify_attributes_list()
207 struct obj_attrs *head) in modify_attributes_list()
209 char *cur = (char *)head + sizeof(struct obj_attrs); in modify_attributes_list()
232 bool get_bool(struct obj_attrs *head, uint32_t attribute) in get_bool()
247 bool attributes_match_reference(struct obj_attrs *candidate, in attributes_match_reference()
248 struct obj_attrs *ref) in attributes_match_reference()
282 enum pkcs11_rc attributes_match_add_reference(struct obj_attrs **head, in attributes_match_add_reference()
283 struct obj_attrs *ref) in attributes_match_add_reference()
431 struct obj_attrs head = { }; in trace_attributes()