Lines Matching full:channel
180 bool Device::GetHTCapability(uint16_t channel, string* ht_cap) {
181 // Get the band capability based on the channel.
183 if (!GetBandCapability(channel, &band_cap)) {
184 LOG(ERROR) << "No band capability found for channel " << channel;
194 // Supported channel width set.
197 // Determine secondary channel is below or above the primary.
199 if (!GetHTSecondaryChannelLocation(channel, &above)) {
200 LOG(ERROR) << "Unable to determine secondary channel location for "
201 << "channel " << channel;
279 bool Device::GetVHTCapability(uint16_t channel, string* vht_cap) {
309 bool Device::GetHTSecondaryChannelLocation(uint16_t channel, bool* above) {
312 // Determine secondary channel location base on the channel. Refer to
314 switch (channel) {
350 bool Device::GetBandCapability(uint16_t channel, BandCapability* capability) {
352 if (!Config::GetFrequencyFromChannel(channel, &frequency)) {
353 LOG(ERROR) << "Invalid channel " << channel;