Searched refs:alq (Results 1 - 25 of 25) sorted by relevance

/freebsd-12-stable/sys/sys/
H A Dalq.h43 struct alq;
70 * alq Storage for a pointer to the newly created queue.
80 int alq_open_flags(struct alq **alqp, const char *file, struct ucred *cred, int cmode,
82 int alq_open(struct alq **alqp, const char *file, struct ucred *cred, int cmode,
89 * alq The queue we're writing to
100 int alq_writen(struct alq *alq, void *data, int len, int flags);
101 int alq_write(struct alq *alq, void *data, int flags);
106 void alq_flush(struct alq *al
141 alq_post(struct alq *alq, struct ale *ale) argument
[all...]
/freebsd-12-stable/sys/kern/
H A Dkern_alq.c50 #include <sys/alq.h>
59 struct alq { struct
71 * not be first field in the alq struct
77 LIST_ENTRY(alq) aq_act; /* List of active queues */
78 LIST_ENTRY(alq) aq_link; /* List of all queues */
88 #define ALQ_LOCK(alq) mtx_lock_spin(&(alq)->aq_mtx)
89 #define ALQ_UNLOCK(alq) mtx_unlock_spin(&(alq)->aq_mtx)
91 #define HAS_PENDING_DATA(alq) ((al
128 ald_add(struct alq *alq) argument
150 ald_rem(struct alq *alq) argument
171 ald_activate(struct alq *alq) argument
178 ald_deactivate(struct alq *alq) argument
196 struct alq *alq; local
232 struct alq *alq; local
262 alq_shutdown(struct alq *alq) argument
296 alq_destroy(struct alq *alq) argument
310 alq_doio(struct alq *alq) argument
438 struct alq *alq; local
511 alq_writen(struct alq *alq, void *data, int len, int flags) argument
665 alq_write(struct alq *alq, void *data, int flags) argument
677 alq_getn(struct alq *alq, int len, int flags) argument
821 alq_get(struct alq *alq, int flags) argument
830 alq_post_flags(struct alq *alq, struct ale *ale, int flags) argument
888 alq_flush(struct alq *alq) argument
918 alq_close(struct alq *alq) argument
[all...]
H A Dkern_ktr.c42 #include <sys/alq.h>
255 struct alq *ktr_alq;
/freebsd-12-stable/sys/dev/ath/
H A Dif_ath_alq.c47 #include <sys/alq.h>
55 if_ath_alq_get(struct if_ath_alq *alq, int len) argument
59 if (alq->sc_alq_isactive == 0)
62 ale = alq_getn(alq->sc_alq_alq, len, ALQ_NOWAIT);
64 alq->sc_alq_numlost++;
69 if_ath_alq_init(struct if_ath_alq *alq, const char *devname) argument
72 bzero(alq, sizeof(*alq));
74 strncpy(alq->sc_alq_devname, devname, ATH_ALQ_DEVNAME_LEN);
75 printf("%s (%s): attached\n", __func__, alq
84 if_ath_alq_setcfg(struct if_ath_alq *alq, uint32_t macVer, uint32_t macRev, uint32_t phyRev, uint32_t halMagic) argument
96 if_ath_alq_tidyup(struct if_ath_alq *alq) argument
105 if_ath_alq_start(struct if_ath_alq *alq) argument
133 if_ath_alq_stop(struct if_ath_alq *alq) argument
154 if_ath_alq_post(struct if_ath_alq *alq, uint16_t op, uint16_t len, const char *buf) argument
[all...]
H A Dif_ath_alq.h136 struct alq * sc_alq_alq; /* alq state */
163 if_ath_alq_checkdebug(struct if_ath_alq *alq, uint16_t op) argument
166 return ((alq->sc_alq_debug | ATH_ALQ_LOG_ALWAYS_MASK)
170 extern void if_ath_alq_init(struct if_ath_alq *alq, const char *devname);
171 extern void if_ath_alq_setcfg(struct if_ath_alq *alq, uint32_t macVer,
173 extern void if_ath_alq_tidyup(struct if_ath_alq *alq);
174 extern int if_ath_alq_start(struct if_ath_alq *alq);
175 extern int if_ath_alq_stop(struct if_ath_alq *alq);
176 extern void if_ath_alq_post(struct if_ath_alq *alq, uint16_
181 if_ath_alq_post_intr(struct if_ath_alq *alq, uint32_t status, uint32_t *state, uint32_t sync_state) argument
[all...]
H A Dah_osdep.c180 * Setting hw.ath.hal.alq=1 enables tracing of all register reads and
182 * fixed-size array of records. When done logging set hw.ath.hal.alq=0
190 #include <sys/alq.h>
194 static struct alq *ath_hal_alq;
239 SYSCTL_PROC(_hw_ath_hal, OID_AUTO, alq, CTLTYPE_INT|CTLFLAG_RW,
454 MODULE_DEPEND(ath_hal, alq, 1, 1, 1);
H A Dif_ath.c7064 MODULE_DEPEND(ath_main, alq, 1, 1, 1);
/freebsd-12-stable/sys/modules/alq/
H A DMakefile4 KMOD= alq
/freebsd-12-stable/sys/dev/nand/
H A Dnandsim_log.c38 #include <sys/alq.h>
60 error = alq_open(&sc->alq, filename,
78 alq_write(sc->alq, (void *) string, ALQ_NOWAIT);
81 alq_close(sc->alq);
105 if (!sc->alq && nandsim_log_output == NANDSIM_OUTPUT_FILE)
167 alq_write(sc->alq, (void *) string,
178 alq_write(sc->alq, (void *) string,
H A Dnandsim_chip.h65 struct alq *alq; member in struct:nandsim_softc
H A Dnandsim.c670 MODULE_DEPEND(nandsim, alq, 1, 1, 1);
/freebsd-12-stable/sys/net80211/
H A Dieee80211_alq.c52 #include <sys/alq.h>
65 static struct alq *ieee80211_alq;
114 SYSCTL_PROC(_net_wlan, OID_AUTO, alq, CTLTYPE_INT|CTLFLAG_RW,
115 0, 0, sysctl_ieee80211_alq_log, "I", "Enable net80211 alq logging");
H A Dieee80211_freebsd.c1127 MODULE_DEPEND(wlan, alq, 1, 1, 1);
/freebsd-12-stable/tools/tools/ath/arcode/
H A Darcode.c26 #include <sys/alq.h>
/freebsd-12-stable/tools/tools/ath/athalq/
H A Dtdma.c29 #include <sys/alq.h>
H A Dar5210_ds.c29 #include <sys/alq.h>
H A Dar5211_ds.c29 #include <sys/alq.h>
H A Dmain.c28 #include <sys/alq.h>
H A Dar5212_ds.c29 #include <sys/alq.h>
H A Dar5416_ds.c29 #include <sys/alq.h>
H A Dar5416_ds_tdma.c29 #include <sys/alq.h>
H A Dar9300_ds.c28 #include <sys/alq.h>
/freebsd-12-stable/share/man/man9/
H A DMakefile12 alq.9 \
448 MLINKS+=alq.9 ALQ.9 \
449 alq.9 alq_close.9 \
450 alq.9 alq_flush.9 \
451 alq.9 alq_get.9 \
452 alq.9 alq_getn.9 \
453 alq.9 alq_open.9 \
454 alq.9 alq_open_flags.9 \
455 alq.9 alq_post.9 \
456 alq
[all...]
/freebsd-12-stable/sys/netinet/
H A Dsiftr.c67 #include <sys/alq.h>
283 static struct alq *siftr_alq = NULL;
1185 struct alq *new_alq;
1203 * the alq as we've proved it can be opened.
1204 * If enabled, close the existing alq and switch the old
1249 * Create our alq
1595 MODULE_DEPEND(siftr, alq, 1, 1, 1);
/freebsd-12-stable/sys/modules/
H A DMakefile37 alq \

Completed in 182 milliseconds