Home
last modified time | relevance | path

Searched refs:list_ptr (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/dev/qat/qat_common/
H A Dadf_fw_counters.c124 struct list_head *list = NULL, *list_ptr = NULL; in adf_read_fw_counters() local
165 list_for_each_prev_safe(list_ptr, tmp_val, &ptr->param_head) in adf_read_fw_counters()
168 list_entry(list_ptr, in adf_read_fw_counters()
272 struct list_head *list_ptr = NULL, *tmp = NULL; in adf_fw_counters_keyval_del_all() local
274 list_for_each_prev_safe(list_ptr, tmp, head) in adf_fw_counters_keyval_del_all()
277 list_entry(list_ptr, struct adf_fw_counters_val, list); in adf_fw_counters_keyval_del_all()
278 list_del(list_ptr); in adf_fw_counters_keyval_del_all()
H A Dadf_cfg.c136 struct list_head *list_ptr, *tmp; in adf_cfg_keyval_remove() local
139 list_for_each_prev_safe(list_ptr, tmp, head) in adf_cfg_keyval_remove()
142 list_entry(list_ptr, struct adf_cfg_key_val, list); in adf_cfg_keyval_remove()
147 list_del(list_ptr); in adf_cfg_keyval_remove()
229 struct list_head *list_ptr, *tmp; in adf_cfg_keyval_del_all() local
231 list_for_each_prev_safe(list_ptr, tmp, head) in adf_cfg_keyval_del_all()
234 list_entry(list_ptr, struct adf_cfg_key_val, list); in adf_cfg_keyval_del_all()
235 list_del(list_ptr); in adf_cfg_keyval_del_all()
H A Dadf_cfg_section.c792 struct list_head *list_ptr, *tmp; in adf_cfg_cleanup_user_section() local
801 list_for_each_prev_safe(list_ptr, tmp, head) in adf_cfg_cleanup_user_section()
804 list_entry(list_ptr, struct adf_cfg_key_val, list); in adf_cfg_cleanup_user_section()
809 list_del(list_ptr); in adf_cfg_cleanup_user_section()
/freebsd/crypto/krb5/src/lib/krb5/krb/
H A Dinit_ctx.c403 krb5_enctype **list_ptr) in mod_list() argument
406 krb5_enctype *list = *list_ptr; in mod_list()
438 free(*list_ptr); in mod_list()
439 *list_ptr = list; in mod_list()
/freebsd/contrib/libfido2/src/
H A Dcred.c717 fido_blob_t *list_ptr = NULL; in fido_cred_set_x509() local
730 if ((list_ptr = recallocarray(cred->attstmt.x5c.ptr, in fido_cred_set_x509()
737 list_ptr[cred->attstmt.x5c.len++] = x5c_blob; in fido_cred_set_x509()
738 cred->attstmt.x5c.ptr = list_ptr; in fido_cred_set_x509()
818 fido_blob_t *list_ptr; in fido_cred_exclude() local
830 if ((list_ptr = recallocarray(cred->excl.ptr, cred->excl.len, in fido_cred_exclude()
836 list_ptr[cred->excl.len++] = id_blob; in fido_cred_exclude()
837 cred->excl.ptr = list_ptr; in fido_cred_exclude()
H A Dassert.c683 fido_blob_t *list_ptr; in fido_assert_empty_allow_list()
693 if (fido_blob_set(&id, ptr, len) < 0 || (list_ptr = in fido_assert_set_extensions()
700 list_ptr[assert->allow_list.len++] = id;
701 assert->allow_list.ptr = list_ptr;
651 fido_blob_t *list_ptr; fido_assert_allow_cred() local
H A Dcbor.c1448 fido_blob_t *list_ptr = NULL; in decode_x5c() local
1463 if ((list_ptr = recallocarray(x5c->ptr, x5c->len, in decode_x5c()
1469 list_ptr[x5c->len++] = x5c_blob; in decode_x5c()
1470 x5c->ptr = list_ptr; in decode_x5c()