| /f-stack/freebsd/netinet/ |
| H A D | sctp_ss_functions.c | 89 strq = TAILQ_FIRST(&asoc->ss_data.out.wheel); in sctp_ss_default_clear() 217 if (TAILQ_FIRST(&strq->outqueue) && in sctp_ss_default_select() 242 sp = TAILQ_FIRST(&strq->outqueue); in sctp_ss_default_scheduled() 291 sp = TAILQ_FIRST(&strq->outqueue); in sctp_ss_default_is_user_msgs_incomplete() 376 if (TAILQ_FIRST(&strq->outqueue) && in sctp_ss_rrp_packet_done() 546 if (TAILQ_FIRST(&strq->outqueue) && in sctp_ss_prio_select() 710 … (net == NULL || (TAILQ_FIRST(&strqt->outqueue) && TAILQ_FIRST(&strqt->outqueue)->net == NULL) || in sctp_ss_fb_select() 711 (net != NULL && TAILQ_FIRST(&strqt->outqueue) && TAILQ_FIRST(&strqt->outqueue)->net != NULL && in sctp_ss_fb_select() 737 sp = TAILQ_FIRST(&strq->outqueue); in sctp_ss_fb_scheduled() 752 if (TAILQ_FIRST(&strq->outqueue)) { in sctp_ss_fb_scheduled() [all …]
|
| /f-stack/dpdk/drivers/event/dlb/pf/base/ |
| H A D | dlb_osdep_list.h | 24 for ((iter) = TAILQ_FIRST(&head); \ 32 for ((iter) = TAILQ_FIRST(&head); \ 104 (TAILQ_FIRST(&head) ? \ 105 container_of(TAILQ_FIRST(&head), type, name) : \
|
| /f-stack/dpdk/drivers/event/dlb2/pf/base/ |
| H A D | dlb2_osdep_list.h | 24 for ((iter) = TAILQ_FIRST(&head); \ 32 for ((iter) = TAILQ_FIRST(&head); \ 104 (TAILQ_FIRST(&head) ? \ 105 container_of(TAILQ_FIRST(&head), type, name) : \
|
| /f-stack/freebsd/arm/arm/ |
| H A D | fiq.c | 99 if ((ofh = TAILQ_FIRST(&fiqhandler_stack)) != NULL) { in fiq_claim() 145 if (fh == TAILQ_FIRST(&fiqhandler_stack)) { in fiq_release() 149 if ((ofh = TAILQ_FIRST(&fiqhandler_stack)) != NULL) { in fiq_release() 157 if (TAILQ_FIRST(&fiqhandler_stack) == NULL) { in fiq_release()
|
| /f-stack/freebsd/contrib/ngatm/netnatm/api/ |
| H A D | cc_sig.c | 95 if ((s = TAILQ_FIRST(&cc->free_sigs)) == NULL) { in sig_alloc() 232 s1 = TAILQ_FIRST(&conn->cc->def_sigs); in cc_conn_resp() 256 s = TAILQ_FIRST(&cc->sigs); in sig_flush() 268 s = TAILQ_FIRST(&cc->def_sigs); in sig_flush() 312 while ((s = TAILQ_FIRST(&cc->sigs)) != NULL) { in cc_work() 334 while ((s = TAILQ_FIRST(&cc->sigs)) != NULL) { in cc_sig_flush_all() 340 while ((s = TAILQ_FIRST(&cc->def_sigs)) != NULL) { in cc_sig_flush_all() 346 while ((s = TAILQ_FIRST(&cc->free_sigs)) != NULL) { in cc_sig_flush_all()
|
| H A D | cc_user.c | 175 if ((conn = TAILQ_FIRST(&user->connq)) != NULL) { in cc_user_abort() 258 if ((conn = TAILQ_FIRST(&user->connq)) != NULL) { in do_arrival() 283 return (TAILQ_FIRST(&user->connq)); in cc_query_check() 543 return (TAILQ_FIRST(&user->connq)); in cc_set_check() 987 struct ccconn *conn = TAILQ_FIRST(&user->connq); in cc_user_active() 1106 port = TAILQ_FIRST(&priv->port_list); in cc_user_sig_handle() 1134 conn = TAILQ_FIRST(&user->connq); in cc_user_sig_handle() 1182 cc_conn_sig(TAILQ_FIRST(&user->connq), in cc_user_sig_handle() 1468 conn = TAILQ_FIRST(&user->connq); in cc_user_sig_handle() 1589 conn = TAILQ_FIRST(&user->connq); in cc_user_sig_handle() [all …]
|
| /f-stack/freebsd/netgraph/atm/sscop/ |
| H A D | ng_sscop_cust.h | 147 #define MSGQ_PEEK(Q) TAILQ_FIRST((Q)) 157 m = TAILQ_FIRST(q); \ 167 _m1 = TAILQ_FIRST(Q); \ 192 s = TAILQ_FIRST(q); \ 203 _s = TAILQ_FIRST(F); \ 224 _s1 = TAILQ_FIRST(Q); \
|
| /f-stack/freebsd/kern/ |
| H A D | subr_disk.c | 169 if (bp == TAILQ_FIRST(&head->queue)) in bioq_remove() 215 return (TAILQ_FIRST(&head->queue)); in bioq_first() 223 bp = TAILQ_FIRST(&head->queue); in bioq_takefirst() 283 cur = TAILQ_FIRST(&head->queue); in bioq_disksort()
|
| H A D | kern_switch.c | 448 td2 = td = TAILQ_FIRST(rqh); in runq_choose_fuzz() 458 td = TAILQ_FIRST(rqh); in runq_choose_fuzz() 481 td = TAILQ_FIRST(rqh); in runq_choose() 501 td = TAILQ_FIRST(rqh); in runq_choose_from()
|
| H A D | uipc_debug.c | 427 db_printf("sb_aiojobq first: %p\n", TAILQ_FIRST(&sb->sb_aiojobq)); in db_print_sockbuf() 466 TAILQ_FIRST(&so->sol_incomp)); in db_print_socket() 467 db_printf("sol_comp first: %p\n", TAILQ_FIRST(&so->sol_comp)); in db_print_socket()
|
| H A D | kern_rangelock.c | 114 for (entry1 = TAILQ_FIRST(&lock->rl_waiters); in rangelock_calc_block() 122 for (entry1 = TAILQ_FIRST(&lock->rl_waiters); in rangelock_calc_block()
|
| /f-stack/tools/compat/include/sys/ |
| H A D | queue.h | 574 TAILQ_FIRST((head))->field.tqe_prev != \ 575 &TAILQ_FIRST((head))) \ 615 #define TAILQ_FIRST(head) ((head)->tqh_first) macro 618 for ((var) = TAILQ_FIRST((head)); \ 623 for ((var) = ((var) ? (var) : TAILQ_FIRST((head))); \ 628 for ((var) = TAILQ_FIRST((head)); \ 658 TAILQ_FIRST((head)) = NULL; \ 659 (head)->tqh_last = &TAILQ_FIRST((head)); \ 691 TAILQ_FIRST((head))->field.tqe_prev = \ 695 TAILQ_FIRST((head)) = (elm); \ [all …]
|
| /f-stack/dpdk/lib/librte_eal/windows/include/sys/ |
| H A D | queue.h | 631 TAILQ_FIRST((head))->field.tqe_prev != \ 632 &TAILQ_FIRST((head))) \ 688 #define TAILQ_FIRST(head) ((head)->tqh_first) macro 691 for ((var) = TAILQ_FIRST((head)); \ 696 for ((var) = ((var) ? (var) : TAILQ_FIRST((head))); \ 701 for ((var) = TAILQ_FIRST((head)); \ 731 TAILQ_FIRST((head)) = NULL; \ 732 (head)->tqh_last = &TAILQ_FIRST((head)); \ 764 TAILQ_FIRST((head))->field.tqe_prev = \ 768 TAILQ_FIRST((head)) = (elm); \ [all …]
|
| /f-stack/freebsd/sys/ |
| H A D | queue.h | 660 TAILQ_FIRST((head))->field.tqe_prev != \ 661 &TAILQ_FIRST((head))) \ 717 #define TAILQ_FIRST(head) ((head)->tqh_first) macro 720 for ((var) = TAILQ_FIRST((head)); \ 725 for ((var) = ((var) ? (var) : TAILQ_FIRST((head))); \ 730 for ((var) = TAILQ_FIRST((head)); \ 760 TAILQ_FIRST((head)) = NULL; \ 761 (head)->tqh_last = &TAILQ_FIRST((head)); \ 793 TAILQ_FIRST((head))->field.tqe_prev = \ 797 TAILQ_FIRST((head)) = (elm); \ [all …]
|
| /f-stack/app/micro_thread/ |
| H A D | kqueue_proxy.h | 55 #define TAILQ_FIRST(head) ((head)->tqh_first) macro 62 for ((var) = TAILQ_FIRST((head)); \ 80 for ((var) = TAILQ_FIRST((head)); \
|
| /f-stack/freebsd/netgraph/atm/sscfu/ |
| H A D | ng_sscfu_cust.h | 101 s = TAILQ_FIRST(q); \ 111 _s1 = TAILQ_FIRST(Q); \
|
| /f-stack/freebsd/security/audit/ |
| H A D | audit_trigger.c | 91 ti = TAILQ_FIRST(&trigger_list); in audit_close() 114 ti = TAILQ_FIRST(&trigger_list); in audit_read()
|
| H A D | audit_pipe.c | 368 while ((app = TAILQ_FIRST(&ap->ap_preselect_list)) != NULL) { in audit_pipe_preselect_flush_locked() 515 if (TAILQ_FIRST(&audit_pipe_list) == NULL) in audit_pipe_submit() 548 if (TAILQ_FIRST(&audit_pipe_list) == NULL) in audit_pipe_submit_user() 616 while ((ape = TAILQ_FIRST(&ap->ap_queue)) != NULL) { in audit_pipe_flush() 940 while ((ape = TAILQ_FIRST(&ap->ap_queue)) != NULL && in audit_pipe_read() 961 KASSERT(TAILQ_FIRST(&ap->ap_queue) == ape, in audit_pipe_read() 994 if (TAILQ_FIRST(&ap->ap_queue) != NULL) in audit_pipe_poll()
|
| /f-stack/freebsd/netinet/khelp/ |
| H A D | h_ertt.c | 232 txsi = TAILQ_FIRST(&e_t->txsegi_q); in ertt_packet_measurement_hook() 246 txsi = TAILQ_FIRST(&e_t->txsegi_q); in ertt_packet_measurement_hook() 319 txsi = TAILQ_FIRST(&e_t->txsegi_q); in ertt_packet_measurement_hook() 541 txsi = TAILQ_FIRST(&e_t->txsegi_q); in ertt_uma_dtor()
|
| /f-stack/freebsd/netgraph/ |
| H A D | ng_pipe.c | 692 ngp_h = TAILQ_FIRST(&ngp_f->packet_head); in ngp_rcvdata() 749 while ((ngp_f = TAILQ_FIRST(&hinfo->fifo_head))) { in pipe_dequeue() 755 ngp_h = TAILQ_FIRST(&ngp_f->packet_head); in pipe_dequeue() 807 FIFO_VTIME_SORT(TAILQ_FIRST( in pipe_dequeue() 852 while ((ngp_h = TAILQ_FIRST(&hinfo->qout_head))) { in pipe_dequeue() 946 while ((ngp_f = TAILQ_FIRST(&hinfo->fifo_head))) { in ngp_disconnect() 947 while ((ngp_h = TAILQ_FIRST(&ngp_f->packet_head))) { in ngp_disconnect() 957 while ((ngp_h = TAILQ_FIRST(&hinfo->qout_head))) { in ngp_disconnect()
|
| /f-stack/freebsd/security/mac_portacl/ |
| H A D | mac_portacl.c | 145 while ((rule = TAILQ_FIRST(head)) != NULL) { in toast_rules() 311 for (rule = TAILQ_FIRST(&rule_head); rule != NULL; 396 for (rule = TAILQ_FIRST(&rule_head); in rules_check()
|
| /f-stack/freebsd/contrib/dpdk_rte_lpm/ |
| H A D | rte_tailq.h | 131 for ((var) = TAILQ_FIRST((head)); \
|
| /f-stack/dpdk/lib/librte_eal/include/ |
| H A D | rte_tailq.h | 131 for ((var) = TAILQ_FIRST((head)); \
|
| /f-stack/dpdk/lib/librte_eal/common/ |
| H A D | eal_common_class.c | 41 cls = TAILQ_FIRST(&rte_class_list); in rte_class_find()
|
| /f-stack/freebsd/contrib/ngatm/netnatm/sig/ |
| H A D | sig_uni.c | 162 while ((c = TAILQ_FIRST(&uni->calls)) != NULL) { in uni_stop() 427 while ((s = TAILQ_FIRST(&uni->workq)) != NULL) { in uni_work() 568 s = TAILQ_FIRST(&uni->delq); in uni_undel() 584 s = TAILQ_FIRST(&uni->workq); in uni_delsig() 601 s = TAILQ_FIRST(&uni->delq); in uni_delsig()
|