Home
last modified time | relevance | path

Searched refs:SLIST_FIRST (Results 1 – 25 of 43) sorted by relevance

12

/f-stack/dpdk/lib/librte_eal/windows/include/sys/
H A Dqueue.h188 if ((SLIST_FIRST(head1) = SLIST_FIRST(head2)) != NULL) \
190 } else if (SLIST_FIRST(head2) != NULL) { \
203 for ((var) = SLIST_FIRST((head)); \
213 for ((var) = SLIST_FIRST((head)); \
223 for ((varp) = &SLIST_FIRST((head)); \
228 SLIST_FIRST((head)) = NULL; \
238 SLIST_FIRST((head)) = (elm); \
245 if (SLIST_FIRST((head)) == (elm)) { \
263 SLIST_FIRST((head)) = SLIST_NEXT(SLIST_FIRST((head)), field); \
274 SLIST_FIRST(head1) = SLIST_FIRST(head2); \
[all …]
/f-stack/freebsd/sys/
H A Dqueue.h218 if ((SLIST_FIRST(head1) = SLIST_FIRST(head2)) != NULL) \
220 } else if (SLIST_FIRST(head2) != NULL) { \
233 for ((var) = SLIST_FIRST((head)); \
243 for ((var) = SLIST_FIRST((head)); \
253 for ((varp) = &SLIST_FIRST((head)); \
258 SLIST_FIRST((head)) = NULL; \
268 SLIST_FIRST((head)) = (elm); \
275 if (SLIST_FIRST((head)) == (elm)) { \
293 SLIST_FIRST((head)) = SLIST_NEXT(SLIST_FIRST((head)), field); \
304 SLIST_FIRST(head1) = SLIST_FIRST(head2); \
[all …]
/f-stack/tools/compat/include/sys/
H A Dqueue.h189 #define SLIST_FIRST(head) ((head)->slh_first) macro
192 for ((var) = SLIST_FIRST((head)); \
202 for ((var) = SLIST_FIRST((head)); \
212 for ((varp) = &SLIST_FIRST((head)); \
217 SLIST_FIRST((head)) = NULL; \
226 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
227 SLIST_FIRST((head)) = (elm); \
234 if (SLIST_FIRST((head)) == (elm)) { \
252 SLIST_FIRST((head)) = SLIST_NEXT(SLIST_FIRST((head)), field); \
257 SLIST_FIRST(head1) = SLIST_FIRST(head2); \
[all …]
H A Dmbuf.h1122 return (SLIST_FIRST(&m->m_pkthdr.tags)); in m_tag_first()
/f-stack/freebsd/netpfil/pf/
H A Dpf_osfp.c250 while ((fp = SLIST_FIRST(&V_pf_osfp_list))) { in pf_osfp_flush()
252 while ((entry = SLIST_FIRST(&fp->fp_oses))) { in pf_osfp_flush()
514 SLIST_FIRST(&f2->fp_oses)->fp_class_nm, in pf_osfp_validate()
515 SLIST_FIRST(&f2->fp_oses)->fp_version_nm, in pf_osfp_validate()
516 SLIST_FIRST(&f2->fp_oses)->fp_subtype_nm, in pf_osfp_validate()
517 SLIST_FIRST(&f->fp_oses)->fp_class_nm, in pf_osfp_validate()
518 SLIST_FIRST(&f->fp_oses)->fp_version_nm, in pf_osfp_validate()
519 SLIST_FIRST(&f->fp_oses)->fp_subtype_nm); in pf_osfp_validate()
522 SLIST_FIRST(&f->fp_oses)->fp_class_nm, in pf_osfp_validate()
523 SLIST_FIRST(&f->fp_oses)->fp_version_nm, in pf_osfp_validate()
[all …]
H A Dpf_table.c823 for (p = SLIST_FIRST(workq); p != NULL; p = q) { in pfr_destroy_kentries()
1626 for (p = SLIST_FIRST(&workq); p != NULL; p = q) { in pfr_ina_commit()
1810 for (p = SLIST_FIRST(workq); p; p = q) { in pfr_setflags_ktables()
1950 for (p = SLIST_FIRST(workq); p; p = q) { in pfr_destroy_ktables()
/f-stack/freebsd/kern/
H A Dkern_et.c87 SLIST_FIRST(&eventtimers)->et_quality < et->et_quality) { in et_register()
252 if (et != SLIST_FIRST(&eventtimers)) in sysctl_kern_eventtimer_choice()
H A Duipc_mbuf2.c352 p = SLIST_FIRST(&m->m_pkthdr.tags); in m_tag_delete_chain()
385 p = SLIST_FIRST(&m->m_pkthdr.tags); in m_tag_locate()
H A Dsubr_epoch.c239 if (SLIST_FIRST(&td->td_epochs) != et) { in epoch_trace_exit()
244 SLIST_FIRST(&td->td_epochs)->et_epoch->e_name, in epoch_trace_exit()
245 SLIST_FIRST(&td->td_epochs)->et_file, in epoch_trace_exit()
246 SLIST_FIRST(&td->td_epochs)->et_line); in epoch_trace_exit()
H A Dkern_cpu.c222 while ((saved_freq = SLIST_FIRST(&sc->saved_freq)) != NULL) { in cpufreq_detach()
291 saved_freq = SLIST_FIRST(&sc->saved_freq); in cf_set_method()
H A Dkern_event.c2101 while ((kn = SLIST_FIRST(&kq->kq_knlist[i])) != NULL) { in kqueue_drain()
2115 while ((kn = SLIST_FIRST(&kq->kq_knhash[i])) != NULL) { in kqueue_drain()
2525 kn = SLIST_FIRST(&knl->kl_list); in knlist_cleardel()
2569 (kn = SLIST_FIRST(&kq->kq_knlist[fd])) != NULL) { in knote_fdclose()
H A Dsubr_lock.c552 lp = SLIST_FIRST(&type->lpt_lpalloc); in lock_profile_lookup()
H A Dkern_sysctl.c358 nodes[indx] = SLIST_FIRST(&sysctl__children); in sysctl_search_oid()
360 nodes[indx] = SLIST_FIRST(&nodes[indx - 1]->oid_children); in sysctl_search_oid()
1291 oidp = SLIST_FIRST(lsp); in name2oid()
H A Dkern_exec.c1325 while ((argkva = SLIST_FIRST(&exec_args_kva_freelist)) == NULL) in exec_alloc_args_kva()
1380 while ((argkva = SLIST_FIRST(&head)) != NULL) { in exec_args_kva_lowmem()
/f-stack/freebsd/mips/malta/
H A Duart_bus_maltausart.c83 sc->sc_sysdev = SLIST_FIRST(&uart_sysdevs); in uart_malta_probe()
/f-stack/freebsd/netgraph/
H A Dng_pptpgre.c731 np = SLIST_FIRST(q); in ng_pptpgre_sendq()
923 prev = SLIST_FIRST(&hpriv->roq); in ng_pptpgre_rcvdata_lower()
962 np = SLIST_FIRST(&hpriv->roq); in ng_pptpgre_rcvdata_lower()
981 np = SLIST_FIRST(&hpriv->roq); in ng_pptpgre_rcvdata_lower()
1016 np = SLIST_FIRST(&hpriv->roq); in ng_pptpgre_rcvdata_lower()
1182 last = np = SLIST_FIRST(&hpriv->roq); in ng_pptpgre_reorder_timeout()
1189 np = SLIST_FIRST(&hpriv->roq); in ng_pptpgre_reorder_timeout()
1265 np = SLIST_FIRST(&hpriv->roq); in ng_pptpgre_reset()
H A Dng_bridge.c967 = SLIST_FIRST(oldList); in ng_bridge_rehash()
1002 struct ng_bridge_hent **hptr = &SLIST_FIRST(&priv->tab[bucket]); in ng_bridge_remove_hosts()
1053 struct ng_bridge_hent **hptr = &SLIST_FIRST(&priv->tab[bucket]); in ng_bridge_timeout()
/f-stack/freebsd/mips/cavium/
H A Duart_bus_octeonusart.c100 sc->sc_sysdev = SLIST_FIRST(&uart_sysdevs); in uart_octeon_probe()
/f-stack/freebsd/mips/atheros/ar531x/
H A Duart_bus_ar5315.c76 sc->sc_sysdev = SLIST_FIRST(&uart_sysdevs); in uart_ar5315_probe()
/f-stack/freebsd/mips/atheros/
H A Duart_bus_ar71xx.c78 sc->sc_sysdev = SLIST_FIRST(&uart_sysdevs); in uart_ar71xx_probe()
H A Duart_bus_ar933x.c83 sc->sc_sysdev = SLIST_FIRST(&uart_sysdevs); in uart_ar933x_probe()
/f-stack/freebsd/netinet/libalias/
H A Dalias_mod.c168 t = SLIST_FIRST(&dll_chain); in walk_dll_chain()
/f-stack/dpdk/drivers/vdpa/mlx5/
H A Dmlx5_vdpa_mem.c23 entry = SLIST_FIRST(&priv->mr_list); in mlx5_vdpa_mem_dereg()
/f-stack/dpdk/drivers/net/qede/
H A Dqede_filter.c1034 tmp = SLIST_FIRST(&qdev->arfs_info.arfs_list_head); in qede_flow_flush()
/f-stack/lib/
H A Dff_kern_timeout.c638 new = SLIST_FIRST(&cc->cc_callfree);

12