Home
last modified time | relevance | path

Searched refs:modem_conf (Results 1 – 10 of 10) sorted by relevance

/external/autotest/client/cros/cellular/wardmodem/state_machines/
Drequest_response.py24 def __init__(self, state, transceiver, modem_conf): argument
34 super(RequestResponse, self).__init__(state, transceiver, modem_conf)
36 self._load_request_response_map(modem_conf)
128 def _load_request_response_map(self, modem_conf): argument
129 self._responses = modem_conf.base_wm_request_response_map
131 for key, value in modem_conf.plugin_wm_request_response_map.items():
Dnetwork_identity_machine.py25 def __init__(self, state, transceiver, modem_conf): argument
36 modem_conf)
44 self._mcc = modem_conf.network_identity_default_mcc
45 self._mnc = modem_conf.network_identity_default_mnc
46 self._msin = modem_conf.network_identity_default_msin
47 self._mdn = modem_conf.network_identity_default_mdn
Dmodem_power_level_machine.py19 def __init__(self, state, transceiver, modem_conf): argument
30 modem_conf)
40 self._allowed_levels = modem_conf.modem_power_level_allowed_levels
41 self._reset_by_default = modem_conf.modem_power_level_reset_by_default
43 self._state['power_level'] = modem_conf.modem_power_level_initial_level
Dnetwork_operator_machine.py37 def __init__(self, state, transceiver, modem_conf): argument
48 modem_conf)
56 self._operators = modem_conf.network_operators
57 self._default_operator_index = modem_conf.network_operator_default_index
Dlevel_indicators_machine.py16 def __init__(self, state, transceiver, modem_conf): argument
30 modem_conf)
Dnetwork_registration_machine.py29 def __init__(self, state, transceiver, modem_conf): argument
40 modem_conf)
Dcall_machine_e362.py17 def __init__(self, state, transceiver, modem_conf): argument
31 super(CallMachineE362, self).__init__(state, transceiver, modem_conf)
/external/autotest/client/cros/cellular/wardmodem/
Dat_transceiver.py61 def __init__(self, mm_at_port, modem_conf, argument
112 self._update_at_to_wm_action_map(modem_conf.base_at_to_wm_action_map)
113 self._update_at_to_wm_action_map(modem_conf.plugin_at_to_wm_action_map)
115 modem_conf.base_wm_response_to_at_map)
117 modem_conf.plugin_wm_response_to_at_map)
129 self._modem_channel.at_prefix = modem_conf.mm_to_modem_at_prefix
130 self._modem_channel.at_suffix = modem_conf.mm_to_modem_at_suffix
137 self._mm_channel.at_prefix = modem_conf.modem_to_mm_at_prefix
138 self._mm_channel.at_suffix = modem_conf.modem_to_mm_at_suffix
Dstate_machine.py23 def __init__(self, state, transceiver, modem_conf): argument
38 self._modem_conf = modem_conf
Dwardmodem.py139 def modem_conf(self): member in WardModem
574 mm_opts += '--test-plugin=' + self._wardmodem.modem_conf.mm_plugin + ' '