Lines Matching refs:ieee

1185 		printf("%s: TODO VHT80+80 channel (ieee=%d, flags=0x%08x)\n",
1246 printf("%s: unknown VHT channel type (ieee=%d, flags=0x%08x)\n",
1286 uint8_t ieee, uint16_t freq, int8_t maxregpower, uint32_t flags)
1294 printf("%s: %d: ieee=%d, freq=%d, flags=0x%08x\n",
1295 __func__, *nchans, ieee, freq, flags);
1299 c->ic_ieee = ieee;
1300 c->ic_freq = freq != 0 ? freq : ieee80211_ieee2mhz(ieee, flags);
1456 int *nchans, uint8_t ieee, uint16_t freq, int8_t maxregpower,
1465 error = addchan(chans, maxchans, nchans, ieee, freq, maxregpower,
1477 int *nchans, uint8_t ieee, uint16_t freq, int8_t maxregpower,
1481 return (ieee80211_add_channel_cbw(chans, maxchans, nchans, ieee, freq,
1509 int *nchans, uint8_t ieee, int8_t maxregpower, uint32_t flags)
1515 freq = ieee80211_ieee2mhz(ieee, flags);
1599 * Adds channels into specified channel list (ieee[] array must be sorted).
1604 const uint8_t ieee[], int nieee, uint32_t flags[])
1611 freq = ieee80211_ieee2mhz(ieee[i], flags[0]);
1663 if (i == 0 || ieee[i] < ieee[0] + 4 ||
1665 ieee80211_ieee2mhz(ieee[i] - 4, flags[j]))
1680 ieee[i] + 4 > ieee[nieee - 1] ||
1682 ieee80211_ieee2mhz(ieee[i] + 4, flags[j]))
1687 ieee[i], freq, 0, flags[j]);
1702 int *nchans, const uint8_t ieee[], int nieee, const uint8_t bands[],
1711 return (add_chanlist(chans, maxchans, nchans, ieee, nieee, flags));
1727 int *nchans, const uint8_t ieee[], int nieee, const uint8_t bands[],
1739 return (add_chanlist(chans, maxchans, nchans, ieee, nieee, flags));
1767 ieee80211_find_channel_byieee(struct ieee80211com *ic, int ieee, int flags)
1774 if (c != NULL && c->ic_ieee == ieee &&
1780 if (c->ic_ieee == ieee &&
1819 * the ieee for verification.
1827 * If the rx status contains a valid ieee/freq, then
1846 "%s: freq=%d, ieee=%d, flags=0x%08x; c=%p\n",