Home | History | Annotate | Download | only in ap_configurators

Lines Matching refs:band

50         return [{'band': ap_spec.BAND_2GHZ,
52 {'band': ap_spec.BAND_5GHZ,
57 return [{'band': ap_spec.BAND_2GHZ,
59 {'band': ap_spec.BAND_5GHZ,
63 def set_mode(self, mode, band=None):
66 self.add_item_to_command_list(self._set_mode, (mode, band), 1, 800)
69 def _set_mode(self, mode, band=None):
70 if band:
71 self._set_band(band)
110 def set_band(self, band):
111 if band == ap_spec.BAND_2GHZ:
114 elif band == ap_spec.BAND_5GHZ:
118 raise RuntimeError('Invalid band sent %s' % band)
122 def _set_band(self, band):
124 self.select_item_from_popup_by_xpath(band, xpath)