Symbol: ale
sys/dev/ale/if_ale.c
175
DRIVER_MODULE(ale, pci, ale_driver, NULL, NULL);
sys/dev/ale/if_ale.c
176
MODULE_PNP_INFO("U16:vendor;U16:device;D:#", pci, ale, ale_devs,
sys/dev/ale/if_ale.c
178
DRIVER_MODULE(miibus, ale, miibus_driver, NULL, NULL);
sys/dev/ale/if_ale.c
81
MODULE_DEPEND(ale, pci, 1, 1, 1);
sys/dev/ale/if_ale.c
82
MODULE_DEPEND(ale, ether, 1, 1, 1);
sys/dev/ale/if_ale.c
83
MODULE_DEPEND(ale, miibus, 1, 1, 1);
sys/dev/ath/ah_osdep.c
246
static struct ale *
sys/dev/ath/ah_osdep.c
249
struct ale *ale;
sys/dev/ath/ah_osdep.c
252
ale = alq_get(ath_hal_alq, ALQ_NOWAIT);
sys/dev/ath/ah_osdep.c
253
if (ale) {
sys/dev/ath/ah_osdep.c
255
(struct athregrec *) ale->ae_data;
sys/dev/ath/ah_osdep.c
259
alq_post(ath_hal_alq, ale);
sys/dev/ath/ah_osdep.c
264
ale = alq_get(ath_hal_alq, ALQ_NOWAIT);
sys/dev/ath/ah_osdep.c
265
if (!ale)
sys/dev/ath/ah_osdep.c
267
return ale;
sys/dev/ath/ah_osdep.c
286
struct ale *ale = ath_hal_alq_get(ah);
sys/dev/ath/ah_osdep.c
287
if (ale) {
sys/dev/ath/ah_osdep.c
288
struct athregrec *r = (struct athregrec *) ale->ae_data;
sys/dev/ath/ah_osdep.c
293
alq_post(ath_hal_alq, ale);
sys/dev/ath/ah_osdep.c
327
struct ale *ale = ath_hal_alq_get(ah);
sys/dev/ath/ah_osdep.c
328
if (ale) {
sys/dev/ath/ah_osdep.c
329
struct athregrec *r = (struct athregrec *) ale->ae_data;
sys/dev/ath/ah_osdep.c
334
alq_post(ath_hal_alq, ale);
sys/dev/ath/ah_osdep.c
344
struct ale *ale = ath_hal_alq_get(ah);
sys/dev/ath/ah_osdep.c
345
if (ale) {
sys/dev/ath/ah_osdep.c
346
struct athregrec *r = (struct athregrec *) ale->ae_data;
sys/dev/ath/ah_osdep.c
351
alq_post(ath_hal_alq, ale);
sys/dev/ath/if_ath_alq.c
156
struct ale *ale;
sys/dev/ath/if_ath_alq.c
172
ale = if_ath_alq_get(alq, len + sizeof(struct if_ath_alq_hdr));
sys/dev/ath/if_ath_alq.c
174
if (ale == NULL)
sys/dev/ath/if_ath_alq.c
177
ap = (struct if_ath_alq_hdr *) ale->ae_data;
sys/dev/ath/if_ath_alq.c
193
alq_post(alq->sc_alq_alq, ale);
sys/dev/ath/if_ath_alq.c
52
static struct ale *
sys/dev/ath/if_ath_alq.c
55
struct ale *ale;
sys/dev/ath/if_ath_alq.c
60
ale = alq_getn(alq->sc_alq_alq, len, ALQ_NOWAIT);
sys/dev/ath/if_ath_alq.c
61
if (! ale)
sys/dev/ath/if_ath_alq.c
63
return (ale);
sys/kern/kern_alq.c
673
struct ale *
sys/kern/kern_alq.c
72
struct ale aq_getpost; /* ALE for use by get/post */
sys/kern/kern_alq.c
817
struct ale *
sys/kern/kern_alq.c
827
alq_post_flags(struct alq *alq, struct ale *ale, int flags)
sys/kern/kern_alq.c
834
if (ale->ae_bytesused > 0) {
sys/kern/kern_alq.c
841
alq->aq_writehead += ale->ae_bytesused;
sys/kern/kern_alq.c
842
alq->aq_freebytes -= ale->ae_bytesused;
sys/kern/kern_ktr.c
327
struct ale *ale = NULL;
sys/kern/kern_ktr.c
355
if ((ale = alq_get(ktr_alq, ALQ_NOWAIT)) == NULL) {
sys/kern/kern_ktr.c
360
entry = (struct ktr_entry *)ale->ae_data;
sys/kern/kern_ktr.c
400
if (ktr_alq_enabled && ale)
sys/kern/kern_ktr.c
401
alq_post(ktr_alq, ale);
sys/net80211/ieee80211_alq.c
120
static struct ale *
sys/net80211/ieee80211_alq.c
123
struct ale *ale;
sys/net80211/ieee80211_alq.c
125
ale = alq_getn(ieee80211_alq, len + sizeof(struct ieee80211_alq_rec),
sys/net80211/ieee80211_alq.c
127
if (!ale)
sys/net80211/ieee80211_alq.c
131
return ale;
sys/net80211/ieee80211_alq.c
139
struct ale *ale;
sys/net80211/ieee80211_alq.c
150
ale = ieee80211_alq_get(len);
sys/net80211/ieee80211_alq.c
151
if (! ale)
sys/net80211/ieee80211_alq.c
154
r = (struct ieee80211_alq_rec *) ale->ae_data;
sys/net80211/ieee80211_alq.c
171
alq_post(ieee80211_alq, ale);
sys/netinet/siftr.c
452
struct ale *log_buf;
sys/sys/alq.h
128
struct ale *alq_getn(struct alq *alq, int len, int flags);
sys/sys/alq.h
129
struct ale *alq_get(struct alq *alq, int flags);
sys/sys/alq.h
137
void alq_post_flags(struct alq *alq, struct ale *ale, int flags);
sys/sys/alq.h
140
alq_post(struct alq *alq, struct ale *ale)
sys/sys/alq.h
142
alq_post_flags(alq, ale, 0);