Home
last modified time | relevance | path

Searched refs:BAND_2GHZ (Results 1 – 25 of 25) sorted by relevance

/external/autotest/server/cros/ap_configurators/
Dap_spec.py9 BAND_2GHZ = '2.4GHz' variable
13 VALID_BANDS = [BAND_2GHZ, BAND_5GHZ]
78 DEFAULT_BAND = BAND_2GHZ
95 if band == BAND_2GHZ:
155 if band == BAND_2GHZ or not band:
168 if ((band == BAND_2GHZ and self._mode not in VALID_2GHZ_MODES) or
170 (band == BAND_2GHZ and self._channel not in VALID_2GHZ_CHANNELS) or
213 return BAND_2GHZ
Dasus_ap_configurator.py50 return [{'band': ap_spec.BAND_2GHZ,
57 return [{'band': ap_spec.BAND_2GHZ,
91 if self.current_band == ap_spec.BAND_2GHZ:
139 (self.current_band == ap_spec.BAND_2GHZ)):
147 (self.current_band != ap_spec.BAND_2GHZ):
193 if band == ap_spec.BAND_2GHZ:
194 self.current_band = ap_spec.BAND_2GHZ
Dap_spec_unittest.py29 spec = ap_spec.APSpec(band=ap_spec.BAND_2GHZ)
65 self.assertEquals(spec.band, ap_spec.BAND_2GHZ)
78 spec = ap_spec.APSpec(band=ap_spec.BAND_2GHZ, mode=ap_spec.MODE_G)
90 spec = ap_spec.APSpec(band=ap_spec.BAND_2GHZ, mode=ap_spec.MODE_N,
127 band=ap_spec.BAND_2GHZ, mode=ap_spec.MODE_A)
171 spec = ap_spec.APSpec(band=ap_spec.BAND_2GHZ, mode=ap_spec.MODE_N)
172 self.assertEquals(spec.band, ap_spec.BAND_2GHZ)
Dasus_rtac68u_ap_configurator.py40 return [{'band': ap_spec.BAND_2GHZ,
48 return [{'band': ap_spec.BAND_2GHZ,
61 return {ap_spec.BAND_2GHZ: {ap_spec.MODE_N: [20]},
145 modes = {ap_spec.BAND_2GHZ: modes_2GHZ,
255 elif band == ap_spec.BAND_2GHZ:
256 self.current_band = ap_spec.BAND_2GHZ
Dasus_qis_ap_configurator.py50 return [{'band': ap_spec.BAND_2GHZ,
57 return [{'band': ap_spec.BAND_2GHZ,
111 if band == ap_spec.BAND_2GHZ:
112 self.current_band = ap_spec.BAND_2GHZ
Dap_configurator_config.py9 BAND_2GHZ = '2.4GHz' variable in APConfiguratorConfig
29 VALID_BANDS = [BAND_2GHZ, BAND_5GHZ]
Dap_configurator_test.py166 self.ap.set_band(ap_spec.BAND_2GHZ)
/external/autotest/server/site_tests/network_WiFi_ChaosConnectDisconnect/
Dcontrol.static_2Ghz23 ap_specs = [ap_spec.APSpec(band=ap_spec.BAND_2GHZ,
26 ap_spec.APSpec(band=ap_spec.BAND_2GHZ,
29 ap_spec.APSpec(band=ap_spec.BAND_2GHZ,
Dcontrol.static24 band=ap_spec.BAND_2GHZ,
30 band=ap_spec.BAND_2GHZ,
Dcontrol.open23 band=ap_spec.BAND_2GHZ),
Dcontrol.debug23 ap_specs = [ap_spec.APSpec(band=ap_spec.BAND_2GHZ, hostnames=debug_aps),
Dcontrol.open_n26 band=ap_spec.BAND_2GHZ),
Dcontrol.wpapsk23 band=ap_spec.BAND_2GHZ),
Dcontrol.wpa2psk26 band=ap_spec.BAND_2GHZ),
Dcontrol.local28 band=ap_spec.BAND_2GHZ,
/external/autotest/server/site_tests/network_WiFi_CliqueConnectDisconnect/
Dcontrol.debug25 band=ap_spec.BAND_2GHZ,
/external/autotest/server/site_tests/network_WiFi_ChaosLongConnect/
Dcontrol.suspend26 band=ap_spec.BAND_2GHZ),
Dcontrol.netperf_udp_downstream27 band=ap_spec.BAND_2GHZ),
Dcontrol.netperf_udp_upstream27 band=ap_spec.BAND_2GHZ),
Dcontrol.long25 band=ap_spec.BAND_2GHZ),
Dcontrol.debug31 band=ap_spec.BAND_2GHZ,
/external/autotest/server/site_tests/network_WiFi_CliqueLongConnect/
Dcontrol.debug25 band=ap_spec.BAND_2GHZ,
/external/autotest/server/cros/
Dap_config.py180 return ap_spec.BAND_2GHZ
/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
DJsonBuilder.java1114 case SoftApConfiguration.BAND_2GHZ: in apBand2wifiScannerBand()
1323 IntStream.of(data.getSupportedChannelList(SoftApConfiguration.BAND_2GHZ)) in buildSoftApCapability()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
DWifiManagerFacade.java1668 return SoftApConfiguration.BAND_2GHZ; in getApBandFromChannelFrequency()