• Home
  • Raw
  • Download

Lines Matching full:machine

37     In interactive mode, the state machine object exposes a dbus object under
41 In this mode, the state machine waits for a dbus method call
62 @returns: True, if the state machine has been cancelled or has
71 Tells the state machine to stop transitioning to further states.
79 Run this machine in interactive mode.
81 This function must be called before |Start|. In this mode, the machine
97 logging.info('Running state machine in interactive mode')
102 """ Start the state machine. """
110 Advance a step on a state machine running in interactive mode.
112 @returns: True if the state machine was advanced. False otherwise.
113 @raises: TestError if called on a non-interactive state machine.
118 'Can not advance a non-interactive state machine')
124 logging.info('%s state machine advancing', self._GetIsmObjectName())
135 Signal sent out by an interactive machine when it is waiting for remote
139 logging.info('%s state machine waiting', self._GetIsmObjectName())
146 Determine whether the state machine is waiting for user action.
148 @returns: True if machine is waiting for |Advance| call.
184 self.Waiting() # Wait for user to |Advance| the machine.
219 a modem state, the default behavior is to terminate the state machine.
232 The first argument to the function is a state machine, which will
234 indicates that the state machine should keep executing further state
235 transitions. A return value of False indicates that the state machine
247 This method will be called when the state machine is in a starting
248 state. This method should return True, if the state machine can
264 Get the current state of the state machine.
266 This method is called to get the current state of the machine when
272 machine.