Home | History | Annotate | Download | only in wardmodem

Lines Matching full:module_name

267     def _create_state_machine(self, module_name):
269 Creates a state machine object given the |module_name|.
272 definitions. If |module_name| is new_and_shiny_machine, the state
275 @param module_name: The name of the module from which the state machine
281 @raises WardModemSetupError if |module_name| is malformed or the object
285 # Obtain the name of the state machine class from module_name.
287 parts = module_name.split('_')
291 self._import_state_machine_module_as_sm(module_name)
298 def _import_state_machine_module_as_sm(self, module_name):
300 if module_name == 'call_machine':
302 elif module_name == 'call_machine_e362':
304 elif module_name == 'level_indicators_machine':
306 elif module_name == 'modem_power_level_machine':
308 elif module_name == 'network_identity_machine':
310 elif module_name == 'network_operator_machine':
312 elif module_name == 'network_registration_machine':
314 elif module_name == 'request_response':
318 '%s' % module_name)