/netbsd-src/sys/altq/ |
H A D | if_altq.h | 139 #define ALTQ_IS_READY(ifq) ((ifq)->altq_flags & ALTQF_READY) argument 140 #define ALTQ_IS_ENABLED(ifq) ((ifq)->altq_flags & ALTQF_ENABLED) argument 141 #define ALTQ_NEEDS_CLASSIFY(ifq) ((ifq)->altq_flags & ALTQF_CLASSIFY) argument 142 #define ALTQ_IS_CNDTNING(ifq) ((ifq)->altq_flags & ALTQF_CNDTNING) argument 144 #define ALTQ_SET_CNDTNING(ifq) ((ifq)->altq_flags |= ALTQF_CNDTNING) argument 145 #define ALTQ_CLEAR_CNDTNING(ifq) ((ifq)->altq_flags &= ~ALTQF_CNDTNING) argument 146 #define ALTQ_IS_ATTACHED(ifq) ((ifq)->altq_disc != NULL) argument 148 #define ALTQ_ENQUEUE(ifq, m, err) \ argument 150 #define ALTQ_DEQUEUE(ifq, m) \ argument 152 #define ALTQ_POLL(ifq, m) \ argument [all …]
|
H A D | altq_fifoq.c | 263 fifoq_enqueue(struct ifaltq *ifq, struct mbuf *m) in fifoq_enqueue() argument 304 fifoq_dequeue(struct ifaltq *ifq, int op) in fifoq_dequeue() argument 329 fifoq_request(struct ifaltq *ifq, int req, void *arg) in fifoq_request() argument
|
H A D | altq_wfq.c | 215 wfq_request(struct ifaltq *ifq, int req, void *arg) in wfq_request() argument 229 wfq_flush(struct ifaltq * ifq) wfq_flush() argument 251 wfq_ifenqueue(struct ifaltq * ifq,struct mbuf * mp) wfq_ifenqueue() argument 435 wfq_ifdequeue(struct ifaltq * ifq,int op) wfq_ifdequeue() argument [all...] |
H A D | altq_blue.c | 389 blue_enqueue(struct ifaltq *ifq, struct mbuf *m) in blue_enqueue() argument 611 blue_dequeue(struct ifaltq * ifq, int op) in blue_dequeue() argument 647 blue_request(struct ifaltq *ifq, int req, void *arg) in blue_request() argument [all...] |
H A D | altq_subr.c | 127 altq_attach(struct ifaltq *ifq, int type, void *discipline, in altq_attach() argument 165 altq_detach(struct ifaltq * ifq) altq_detach() argument 191 altq_enable(struct ifaltq * ifq) altq_enable() argument 212 altq_disable(struct ifaltq * ifq) altq_disable() argument 250 tbr_dequeue(struct ifaltq * ifq,int op) tbr_dequeue() argument 299 tbr_set(struct ifaltq * ifq,struct tb_profile * profile) tbr_set() argument 388 tbr_get(struct ifaltq * ifq,struct tb_profile * profile) tbr_get() argument [all...] |
H A D | altq_rio.c | 727 rio_request(struct ifaltq *ifq, int req, void *arg) in rio_request() argument 748 rio_enqueue(struct ifaltq *ifq, struct mbuf *m) in rio_enqueue() argument 774 rio_dequeue(struct ifaltq *ifq, int op) in rio_dequeue() argument [all...] |
H A D | altq_priq.c | 256 priq_request(struct ifaltq *ifq, int req, void *arg) in priq_request() argument 428 priq_enqueue(struct ifaltq *ifq, struct mbuf *m) in priq_enqueue() argument 490 priq_dequeue(struct ifaltq *ifq, int op) in priq_dequeue() argument 625 priq_attach(struct ifaltq * ifq,u_int bandwidth) priq_attach() argument [all...] |
H A D | altq_cbq.c | 200 cbq_request(struct ifaltq *ifq, int req, void *arg) in cbq_request() argument 496 cbq_enqueue(struct ifaltq *ifq, struct mbuf *m) in cbq_enqueue() argument 550 cbq_dequeue(struct ifaltq *ifq, in argument 576 cbqrestart(struct ifaltq * ifq) cbqrestart() argument [all...] |
H A D | altq_jobs.c | 150 jobs_attach(struct ifaltq *ifq, u_int bandwidth, u_int qlimit, u_int separate) in jobs_attach() argument 230 jobs_request(struct ifaltq *ifq, int req, void *arg) in jobs_request() argument 493 jobs_enqueue(struct ifaltq *ifq, struct mbuf *m) in jobs_enqueue() argument 655 jobs_dequeue(struct ifaltq *ifq, int op) in jobs_dequeue() argument [all...] |
H A D | altq_red.c | 1009 red_enqueue(struct ifaltq *ifq, struct mbuf *m) in red_enqueue() argument 1033 red_dequeue(struct ifaltq *ifq, int op) in red_dequeue() argument 1049 red_request(struct ifaltq *ifq, int req, void *arg) in red_request() argument
|
H A D | altq_hfsc.c | 358 hfsc_request(struct ifaltq *ifq, int req, void *arg) in hfsc_request() argument 669 hfsc_enqueue(struct ifaltq *ifq, struct mbuf *m) in hfsc_enqueue() argument 735 hfsc_dequeue(struct ifaltq *ifq, int op) in hfsc_dequeue() argument 1712 hfsc_attach(struct ifaltq * ifq,u_int bandwidth) hfsc_attach() argument [all...] |
H A D | altq_wfq.h | 116 struct ifaltq *ifq; member
|
H A D | altq_rmclass.c | 665 rmc_init(struct ifaltq *ifq, struct rm_ifdat *ifd, uint64_t psecPerByte, in rmc_init() argument
|
H A D | altq_cdnr.c | 408 top_create(struct ifaltq *ifq) in top_create() argument
|
/netbsd-src/sys/net/ |
H A D | if.h | 693 #define IF_QFULL(ifq) ((ifq)->ifq_len >= (ifq)->ifq_maxlen) argument 694 #define IF_DROP(ifq) ((ifq)->ifq_drops++) argument 695 #define IF_ENQUEUE(ifq, m) do { \ argument 704 IF_PREPEND(ifq,m) global() argument 711 IF_DEQUEUE(ifq,m) global() argument 720 IF_POLL(ifq,m) global() argument 721 IF_PURGE(ifq) global() argument 733 IF_IS_EMPTY(ifq) global() argument 981 IFQ_ENQUEUE(ifq,m,err) global() argument 1000 IFQ_DEQUEUE(ifq,m) global() argument 1012 IFQ_POLL(ifq,m) global() argument 1024 IFQ_PURGE(ifq) global() argument 1034 IFQ_SET_READY(ifq) global() argument 1039 IFQ_CLASSIFY(ifq,m,af) global() argument 1053 IFQ_ENQUEUE(ifq,m,err) global() argument 1068 IFQ_DEQUEUE(ifq,m) global() argument 1075 IFQ_POLL(ifq,m) global() argument 1082 IFQ_PURGE(ifq) global() argument 1089 IFQ_SET_READY(ifq) global() argument 1091 IFQ_CLASSIFY(ifq,m,af) global() argument 1095 IFQ_LOCK_INIT(ifq) global() argument 1097 IFQ_LOCK_DESTROY(ifq) global() argument 1098 IFQ_LOCK(ifq) global() argument 1099 IFQ_UNLOCK(ifq) global() argument 1101 IFQ_IS_EMPTY(ifq) global() argument 1102 IFQ_INC_LEN(ifq) global() argument 1103 IFQ_DEC_LEN(ifq) global() argument 1104 IFQ_INC_DROPS(ifq) global() argument 1105 IFQ_SET_MAXLEN(ifq,len) global() argument [all...] |
H A D | if_ppp.c | 876 struct ifqueue *ifq; in pppoutput() local 1047 struct ifqueue *ifq; in ppp_requeue() local
|
H A D | if.c | 856 struct ifqueue *const ifq = p; in if_percpuq_init_ifq() local 885 struct ifqueue *ifq; in if_percpuq_dequeue() local 899 struct ifqueue *const ifq = p; in if_percpuq_purge_ifq() local 921 struct ifqueue *ifq; in if_percpuq_enqueue() local 944 struct ifqueue *const ifq = p; if_percpuq_drops() local 3841 ifq_enqueue2(struct ifnet * ifp,struct ifqueue * ifq,struct mbuf * m) ifq_enqueue2() argument 3994 sysctl_sndq_setup(struct sysctllog ** clog,const char * ifname,struct ifaltq * ifq) sysctl_sndq_setup() argument [all...] |
H A D | if_l2tp.c | 379 struct ifqueue *ifq; in l2tp_tx_enqueue() local 502 struct ifqueue *ifq; in l2tpintr() local
|
H A D | if_sl.c | 477 struct ifqueue *ifq = NULL; in sloutput() local
|
/netbsd-src/sys/external/bsd/ipf/netinet/ |
H A D | ip_state.c | 430 ipftq_t *ifq, *ifqnext; in ipf_state_soft_fini() local 2977 ipftq_t *ifq; in ipf_state_lookup() local 3256 ipftq_t *ifq; in ipf_state_check() local 3671 ipftq_t *ifq, *ifqnext; in ipf_state_expire() local 3744 ipftq_t *ifq; in ipf_state_flush() local
|
H A D | fil.c | 5615 ipftq_t *ifq; in ipf_addtimeoutqueue() local 5669 ipf_deletetimeoutqueue(ipftq_t *ifq) in ipf_deletetimeoutqueue() 5695 ipf_freetimeoutqueue(ipf_main_softc_t *softc, ipftq_t *ifq) in ipf_freetimeoutqueue() 5734 ipftq_t *ifq; in ipf_deletequeueentry() local 5768 ipftq_t *ifq; in ipf_queuefront() local 5804 ipftq_t *ifq; in ipf_queueback() local 5845 ipf_queueappend(u_long ticks, ipftqent_t *tqe, ipftq_t *ifq, void *parent) in ipf_queueappend() 8735 ipftq_t *ifq, *ifqnext; in ipf_queueflush() local
|
H A D | ip_nat.c | 535 ipftq_t *ifq, *ifqnext; in ipf_nat_soft_fini() local 4721 ipftq_t *ifq, *ifq2; in ipf_nat_update() local 5801 ipftq_t *ifq, *ifqnext; ipf_nat_expire() local 6668 ipftq_t *ifq; ipf_nat_extraflush() local [all...] |
/netbsd-src/sys/dev/pci/ |
H A D | xmm7360.c | 165 #define IFQ_SET_READY(ifq) /* nothing */ argument 249 #define ifq_deq_begin(ifq) ({ \ argument 254 #define ifq_deq_rollback(ifq, m) m_freem(m) argument 255 #define ifq_deq_commit(ifq, m) /* nothing to do */ argument 256 #define ifq_is_oactive(ifq) true /* always restart queue */ argument 257 #define ifq_clr_oactive(ifq) /* nothing to do */ argument 258 #define ifq_empty(ifq) IFQ_IS_EMPTY(ifq) argument 259 #define ifq_purge(ifq) IF_PURGE(ifq) argument
|
/netbsd-src/sys/net80211/ |
H A D | ieee80211_netbsd.c | 514 ieee80211_drain_ifq(struct ifqueue *ifq) in ieee80211_drain_ifq()
|
/netbsd-src/usr.bin/netstat/ |
H A D | main.c | 768 struct ifqueue intrq, *ifq = &intrq; in print_softintrq() local
|