HomeSort by relevance Sort by last modified time
    Searched full:ap_spec (Results 76 - 88 of 88) sorted by null

1 2 34

  /external/autotest/server/cros/ap_configurators/
dlink_dwl2100_ap_configurator.py 10 import ap_spec namespace
30 {'band' : ap_spec.BAND_5GHZ,
38 return [{'band': ap_spec.BAND_2GHZ,
50 supported_modes = [{'band' : ap_spec.BAND_2GHZ,
52 {'band' : ap_spec.BAND_5GHZ,
60 return [{'band': ap_spec.BAND_2GHZ,
61 'modes': [ap_spec.MODE_G]}]
79 return security_mode in (ap_spec.SECURITY_TYPE_DISABLED,
80 ap_spec.SECURITY_TYPE_WPAPSK,
81 ap_spec.SECURITY_TYPE_WPA2PSK
    [all...]
dlink_dir300_ap_configurator.py 11 import ap_spec namespace
23 return [{'band': ap_spec.BAND_2GHZ,
28 return [{'band': ap_spec.BAND_2GHZ,
29 'modes': [ap_spec.MODE_G]}]
41 return security_mode in (ap_spec.SECURITY_TYPE_DISABLED,
42 ap_spec.SECURITY_TYPE_WEP,
43 ap_spec.SECURITY_TYPE_WPAPSK,
44 ap_spec.SECURITY_TYPE_WPA2PSK)
189 if security == ap_spec.SECURITY_TYPE_WPAPSK:
trendnet654tr_ap_configurator.py 7 import ap_spec namespace
107 mode_mapping = {ap_spec.MODE_B| ap_spec.MODE_G | ap_spec.MODE_N:
109 ap_spec.MODE_N: '2.4Ghz 802.11n only mode',
110 ap_spec.MODE_B | ap_spec.MODE_G:
117 ' %s.', ap_spec.mode_string_for_mode(mode),
153 if security == ap_spec.SECURITY_TYPE_WPAPSK:
static_ap_configurator.py 15 from autotest_lib.server.cros.ap_configurators import ap_spec namespace
53 if self.security == ap_spec.SECURITY_TYPE_MIXED:
54 self.security = [ap_spec.SECURITY_TYPE_WPA2PSK,
55 ap_spec.SECURITY_TYPE_WPAPSK]
184 supported_modes = [{'band' : ap_spec.BAND_2GHZ,
186 {'band' : ap_spec.BAND_5GHZ,
193 'modes' : [ap_spec.DEFAULT_5GHZ_MODE
194 if self.channel in ap_spec.VALID_5GHZ_CHANNELS
195 else ap_spec.DEFAULT_2GHZ_MODE]}]
252 if (ap_spec.SECURITY_TYPE_WPAPSK in self.security o
    [all...]
ap_batch_locker.py 52 def construct_ap_lockers(ap_spec, retries, hostname_matching_only=False,
56 @param ap_spec: an APSpec object
68 ap_spec)
70 for ap in factory.get_aps_by_hostnames(ap_spec.hostnames):
73 for ap in factory.get_ap_configurators_by_spec(ap_spec):
88 @attribute ap_spec: an APSpec object
100 def __init__(self, lock_manager, ap_spec, retries=MAX_RETRIES,
105 @param ap_spec: an APSpec object
114 self.aps_to_lock = construct_ap_lockers(ap_spec, retries,
ap_configurator.py 9 from autotest_lib.server.cros.ap_configurators import ap_spec namespace
71 return ap_spec.CONFIGURATOR_STATIC
104 {'band' : ap_spec.BAND_5GHZ,
123 supported_modes = [{'band' : ap_spec.BAND_2GHZ,
125 {'band' : ap_spec.BAND_5GHZ,
dynamic_ap_configurator.py 17 import ap_spec namespace
72 self.current_band = ap_spec.BAND_2GHZ
85 self.ap_spec = None
108 return ap_spec.CONFIGURATOR_DYNAMIC
316 {'band' : ap_spec.BAND_5GHZ,
329 if self.current_band == ap_spec.BAND_2GHZ:
353 supported_modes = [{'band' : ap_spec.BAND_2GHZ,
355 {'band' : ap_spec.BAND_5GHZ,
523 if (set_ap_spec.security == ap_spec.SECURITY_TYPE_WPAPSK or
524 set_ap_spec.security == ap_spec.SECURITY_TYPE_WPA2PSK)
    [all...]
edimax6428ns_ap_configurator.py 5 import ap_spec namespace
57 if security == ap_spec.SECURITY_TYPE_WPAPSK:
ap_configurator_factory.py 13 from autotest_lib.server.cros.ap_configurators import ap_spec namespace
400 @param spec: a validated ap_spec object
403 given ap_spec; False otherwise. An ap_spec must
425 if spec.configurator_type != ap_spec.CONFIGURATOR_ANY:
  /external/autotest/server/site_tests/network_WiFi_ChaosConfigFailure/
control 24 from autotest_lib.server.cros.chaos_ap_configurators import ap_spec
31 tested_ap_spec = ap_spec.APSpec(hostnames=debug_aps)
  /external/autotest/server/cros/network/
chaos_clique_utils.py 18 from autotest_lib.server.cros.ap_configurators import ap_spec as ap_spec_module
98 def configure_aps(aps, ap_spec, broken_pdus=[]):
102 @param ap_spec: APSpec object corresponding to the AP configuration.
107 ap.set_using_ap_spec(ap_spec)
243 def scan_for_networks(ssid, capturer, ap_spec):
248 @param ap_spec: APSpec object corresponding to the AP configuration.
255 freq = ap_spec_module.FREQUENCY_TABLE[ap_spec.channel]
265 def return_available_networks(ap, capturer, job, ap_spec):
271 @param ap_spec: APSpec object corresponding to the AP configuration.
276 networks = scan_for_networks(ap.ssid, capturer, ap_spec)
    [all...]
  /external/autotest/server/cros/
ap_config.py 12 from autotest_lib.server.cros.ap_configurators import ap_spec namespace
166 return ap_spec.CHANNEL_TABLE[self.get_frequency()]
172 return ap_spec.BAND_2GHZ
174 return ap_spec.BAND_5GHZ
  /external/autotest/server/cros/clique_lib/
clique_runner.py 243 for ap_spec in self._ap_specs:
245 lock_manager, ap_spec,
262 for ap, ap_spec in zip(aps, self._ap_specs):
269 ap, ap_spec, capturer, job)

Completed in 201 milliseconds

1 2 34