Home | History | Annotate | Download | only in network

Lines Matching refs:ht_type

84     def create_raw_monitor(self, phy, frequency, ht_type=None,
90 @param ht_type string ignored.
98 def configure_raw_monitor(self, monitor_device, frequency, ht_type=None):
103 @param ht_type string ignored.
191 def create_raw_monitor(self, phy, frequency, ht_type=None,
199 @param ht_type string optional HT type ('HT20', 'HT40+', or 'HT40-').
219 self.configure_raw_monitor(monitor_device, frequency, ht_type)
224 def configure_raw_monitor(self, monitor_device, frequency, ht_type=None):
231 @param ht_type string optional HT type ('HT20', 'HT40+', or 'HT40-').
235 if ht_type:
236 ht_type = ht_type.upper()
237 channel_args = '%s %s' % (channel_args, ht_type)
238 if ht_type not in ('HT20', 'HT40+', 'HT40-'):
239 raise error.TestError('Cannot set HT mode: %s', ht_type)