Symbol: freqband
lib/lib80211/lib80211_regdomain.c
143
if (iseq(name, "freqband") && mt->freqband == NULL && mt->netband != NULL) {
lib/lib80211/lib80211_regdomain.c
163
if (iseq(name, "freqband") && mt->freqband == NULL) {
lib/lib80211/lib80211_regdomain.c
164
mt->freqband = calloc(1, sizeof(struct freqband));
lib/lib80211/lib80211_regdomain.c
165
mt->freqband->id = strdup(id);
lib/lib80211/lib80211_regdomain.c
167
LIST_INSERT_HEAD(&mt->rdp->freqbands, mt->freqband, next);
lib/lib80211/lib80211_regdomain.c
250
if (iseq(name, "freqstart") && mt->freqband != NULL) {
lib/lib80211/lib80211_regdomain.c
251
mt->freqband->freqStart = strtoul(p, NULL, 0);
lib/lib80211/lib80211_regdomain.c
254
if (iseq(name, "freqend") && mt->freqband != NULL) {
lib/lib80211/lib80211_regdomain.c
255
mt->freqband->freqEnd = strtoul(p, NULL, 0);
lib/lib80211/lib80211_regdomain.c
258
if (iseq(name, "chanwidth") && mt->freqband != NULL) {
lib/lib80211/lib80211_regdomain.c
259
mt->freqband->chanWidth = strtoul(p, NULL, 0);
lib/lib80211/lib80211_regdomain.c
262
if (iseq(name, "chansep") && mt->freqband != NULL) {
lib/lib80211/lib80211_regdomain.c
263
mt->freqband->chanSep = strtoul(p, NULL, 0);
lib/lib80211/lib80211_regdomain.c
267
if (mt->freqband != NULL)
lib/lib80211/lib80211_regdomain.c
268
mt->freqband->flags |= decode_flag(mt, p, len);
lib/lib80211/lib80211_regdomain.c
326
if (iseq(name, "freqband") && mt->freqband != NULL) {
lib/lib80211/lib80211_regdomain.c
329
mt->freqband = NULL;
lib/lib80211/lib80211_regdomain.c
420
struct freqband *fp;
lib/lib80211/lib80211_regdomain.c
53
struct freqband *freqband; /* current freqband */
lib/lib80211/lib80211_regdomain.c
608
struct freqband *fp = LIST_FIRST(&rdp->freqbands);
lib/lib80211/lib80211_regdomain.h
43
LIST_ENTRY(freqband) next;
lib/lib80211/lib80211_regdomain.h
54
const struct freqband *band; /* channel list description */
lib/lib80211/lib80211_regdomain.h
97
LIST_HEAD(, freqband) freqbands; /* frequency band table */
sbin/ifconfig/ifieee80211.c
2153
const struct freqband *b;
sys/dev/malo/if_malo.c
1857
hc->flags.freqband = MALO_FREQ_BAND_2DOT4GHZ;
sys/dev/malo/if_malohal.h
158
uint32_t freqband : 6,