Home | History | Annotate | Download | only in cellular_SafetyDance

Lines Matching refs:reason

49     def _ignoring(self, reason):
50 if ('AlreadyConnected' in reason or
51 'Not connected' in reason or
52 'Bearer already being connected' in reason or
53 'Bearer already being disconnected' in reason or
54 'InProgress' in reason):
56 if 'NotSupported' in reason:
71 success, reason = self._filterexns(lambda:
76 if not success and not self._ignoring(reason):
77 raise error.TestFail('Could not connect: %s' % reason)
87 success, reason = self._filterexns(lambda:
93 if not success and not self._ignoring(reason):
94 raise error.TestFail('Could not disconnect: %s' % reason)