HomeSort by relevance Sort by last modified time
    Searched refs:SerialException (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/urlhandler/
protocol_socket.py 42 """Open port with current settings. This may throw a SerialException
46 raise SerialException("Port must be configured before it can be used.")
48 raise SerialException("Port is already open.")
55 raise SerialException("Could not open port %s: %s" % (self.portstr, msg))
73 raise SerialException("Can only operate on open ports")
93 raise SerialException("there is no sensible way to turn numbers into URLs")
121 raise SerialException('expected a string in the form "[rfc2217://]<host>:<port>[/option[/option...]]": %s' % e)
162 raise SerialException('connection failed (%s)' % e)
167 connection is blocked. May raise SerialException if the connection is
174 raise SerialException("socket connection failed: %s" % e
    [all...]
protocol_hwgrep.py 34 raise serial.SerialException('no ports found matching regexp %r' % (url,))
protocol_loop.py 39 """Open port with current settings. This may throw a SerialException
42 raise SerialException("Port is already open.")
50 raise SerialException("Port must be configured before it can be used.")
82 raise SerialException("there is no sensible way to turn numbers into URLs")
104 raise SerialException('expected a string in the form "[loop://][option[/option...]]": %s' % e)
144 connection is blocked. May raise SerialException if the connection is
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/
serialwin32.py 41 """Open port with current settings. This may throw a SerialException
44 raise SerialException("Port must be configured before it can be used.")
46 raise SerialException("Port is already open.")
66 raise SerialException("could not open port %r: %r" % (self.portstr, ctypes.WinError()))
105 raise SerialException("Can only operate on a valid port handle")
239 raise SerialException('call to ClearCommError failed')
252 raise SerialException('call to ClearCommError failed')
260 raise SerialException("ReadFile failed (%r)" % ctypes.WinError())
270 raise SerialException("ReadFile failed (%r)" % ctypes.WinError())
289 raise SerialException("WriteFile failed (%r)" % ctypes.WinError()
    [all...]
serialcli.py 33 """Open port with current settings. This may throw a SerialException
36 raise SerialException("Port must be configured before it can be used.")
38 raise SerialException("Port is already open.")
43 raise SerialException("could not open port %s: %s" % (self.portstr, msg))
57 raise SerialException("Can only operate on a valid port handle")
143 raise SerialException(str(e))
serialjava.py 57 """Open port with current settings. This may throw a SerialException
60 raise SerialException("Port must be configured before it can be used.")
62 raise SerialException("Port is already open.")
71 raise SerialException("Could not open port: %s" % msg)
80 raise SerialException("Can only operate on a valid port handle")
195 raise SerialException("The setBreak function is not implemented in java.")
serialposix.py 231 raise SerialException("sorry don't know how to handle non standard baud rate on this platform")
280 """Open port with current settings. This may throw a SerialException
283 raise SerialException("Port must be configured before it can be used.")
285 raise SerialException("Port is already open.")
292 raise SerialException(msg.errno, "could not open port %s: %s" % (self._port, msg))
314 raise SerialException("Can only operate on a valid file descriptor")
325 raise SerialException("Could not configure port: %s" % msg)
475 raise SerialException('device reports readiness to read but returned no data (device disconnected or multiple access on port?)')
481 raise SerialException('read failed: %s' % (e,))
485 raise SerialException('read failed: %s' % (e,)
    [all...]
rfc2217.py 346 raise SerialException("timeout while waiting for option %r" % (self.name))
370 Open port with current settings. This may throw a SerialException
378 raise SerialException("Port must be configured before it can be used.")
380 raise SerialException("Port is already open.")
387 raise SerialException("Could not open port %s: %s" % (self.portstr, msg))
448 raise SerialException("Remote does not seem to support RFC2217 or BINARY mode %r" % mandadory_options)
465 raise SerialException("Can only operate on open ports")
493 raise SerialException("Remote does not accept parameter change (RFC2217): %r" % items)
524 raise SerialException("there is no sensible way to turn numbers into URLs")
558 raise SerialException('expected a string in the form "[rfc2217://]<host>:<port>[/option[/option...]]": %s' % e
    [all...]
serialutil.py 100 class SerialException(IOError):
104 class SerialTimeoutException(SerialException):
109 portNotOpenError = SerialException('Attempting to use a port that is not open')
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
miniterm.py 231 except serial.SerialException:
274 except serial.SerialException, e:
651 except serial.SerialException, e:

Completed in 119 milliseconds