Searched refs:new_list (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/contrib/serf/buckets/
H A Daggregate_buckets.c150 bucket_list_t *new_list; local
152 new_list = serf_bucket_mem_alloc(aggregate_bucket->allocator,
153 sizeof(*new_list));
154 new_list->bucket = prepend_bucket;
155 new_list->next = ctx->list;
157 ctx->list = new_list;
165 bucket_list_t *new_list; local
167 new_list = serf_bucket_mem_alloc(aggregate_bucket->allocator,
168 sizeof(*new_list));
169 new_list
[all...]
H A Dssl_buckets.c1608 bucket_list_t *new_list; local
1610 new_list = serf_bucket_mem_alloc(ctx->ssl_ctx->allocator,
1611 sizeof(*new_list));
1612 new_list->bucket = stream;
1613 new_list->next = NULL;
1615 ctx->ssl_ctx->encrypt.stream_next = new_list;
1622 scan->next = new_list;
/freebsd-13-stable/sys/kern/
H A Dsubr_eventhandler.c73 struct eventhandler_list *list, *new_list; local
82 new_list = malloc(sizeof(*new_list) + strlen(name) + 1,
89 free(new_list, M_EVENTHANDLER);
92 list = new_list;
/freebsd-13-stable/contrib/ofed/libibverbs/
H A Dinit.c268 struct ibv_device **new_list; local
272 new_list = realloc(*dev_list, *list_size * sizeof (struct ibv_device *));
273 if (!new_list)
275 *dev_list = new_list;
/freebsd-13-stable/sys/netinet/
H A Dsctp_auth.c86 sctp_auth_chklist_t *new_list; local
92 new_list = sctp_alloc_chunklist();
93 if (new_list == NULL)
96 memcpy(new_list, list, sizeof(*new_list));
98 return (new_list);
632 sctp_hmaclist_t *new_list; local
635 alloc_size = sizeof(*new_list) + num_hmacs * sizeof(new_list->hmac[0]);
636 SCTP_MALLOC(new_list, sctp_hmaclist_
686 sctp_hmaclist_t *new_list; local
706 sctp_hmaclist_t *new_list; local
[all...]
/freebsd-13-stable/sys/dev/qlnx/qlnxe/
H A Dbcm_osal.h280 #define OSAL_LIST_SPLICE_TAIL_INIT(new_list, list) \
282 ((new_list)->tail)->next = ((list)->head); \
283 ((list)->head)->prev = ((new_list)->tail); \
284 (list)->head = (new_list)->head; \
285 (list)->cnt = (list)->cnt + (new_list)->cnt; \
286 OSAL_LIST_INIT(new_list); \
/freebsd-13-stable/contrib/ldns/
H A Drr.c1419 ldns_rr_list *new_list; local
1426 new_list = ldns_rr_list_new();
1427 if (!new_list) {
1436 ldns_rr_list_deep_free(new_list);
1439 ldns_rr_list_push_rr(new_list, r);
1441 return new_list;
/freebsd-13-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_cc.c2483 dt_node_t *new_list = NULL; local
2494 new_list = dt_node_link(new_list, dnp);
2496 yypcb->pcb_root->dn_list = new_list;
/freebsd-13-stable/usr.sbin/bsdinstall/scripts/
H A Dzfsboot520 local disk name new_list=
526 new_list="$new_list $disk"
528 disks="${new_list# }"

Completed in 198 milliseconds