Home
last modified time | relevance | path

Searched refs:freqband (Results 1 – 5 of 5) sorted by relevance

/freebsd/lib/lib80211/
H A Dlib80211_regdomain.c53 struct freqband *freqband; /* current freqband */ member
143 if (iseq(name, "freqband") && mt->freqband == NULL && mt->netband != NULL) { in start_element()
163 if (iseq(name, "freqband") && mt->freqband == NULL) { in start_element()
164 mt->freqband = calloc(1, sizeof(struct freqband)); in start_element()
165 mt->freqband->id = strdup(id); in start_element()
167 LIST_INSERT_HEAD(&mt->rdp->freqbands, mt->freqband, next); in start_element()
250 if (iseq(name, "freqstart") && mt->freqband != NULL) { in end_element()
251 mt->freqband->freqStart = strtoul(p, NULL, 0); in end_element()
254 if (iseq(name, "freqend") && mt->freqband != NULL) { in end_element()
255 mt->freqband->freqEnd = strtoul(p, NULL, 0); in end_element()
[all …]
H A Dlib80211_regdomain.h35 struct freqband { struct
43 LIST_ENTRY(freqband) next; argument
54 const struct freqband *band; /* channel list description */
97 LIST_HEAD(, freqband) freqbands; /* frequency band table */
/freebsd/sys/dev/malo/
H A Dif_malohal.h158 uint32_t freqband : 6, member
H A Dif_malo.c1853 hc->flags.freqband = MALO_FREQ_BAND_2DOT4GHZ; in malo_mapchan()
/freebsd/sbin/ifconfig/
H A Difieee80211.c2153 const struct freqband *b; in regdomain_addchans()