OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_stopbits
(Results
1 - 6
of
6
) sorted by null
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/
serialcli.py
106
if self.
_stopbits
== STOPBITS_ONE:
108
elif self.
_stopbits
== STOPBITS_ONE_POINT_FIVE:
110
elif self.
_stopbits
== STOPBITS_TWO:
113
raise ValueError("Unsupported number of stop bits: %r" % self.
_stopbits
)
serialjava.py
94
if self.
_stopbits
== STOPBITS_ONE:
98
elif self.
_stopbits
== STOPBITS_TWO:
101
raise ValueError("unsupported number of stopbits: %r" % self.
_stopbits
)
serialwin32.py
166
if self.
_stopbits
== STOPBITS_ONE:
168
elif self.
_stopbits
== STOPBITS_ONE_POINT_FIVE:
170
elif self.
_stopbits
== STOPBITS_TWO:
173
raise ValueError("Unsupported number of stop bits: %r" % self.
_stopbits
)
serialutil.py
260
self.
_stopbits
= None # correct value is assigned below through properties
383
self.
_stopbits
= stopbits
388
return self.
_stopbits
serialposix.py
372
if self.
_stopbits
== STOPBITS_ONE:
374
elif self.
_stopbits
== STOPBITS_ONE_POINT_FIVE:
376
elif self.
_stopbits
== STOPBITS_TWO:
379
raise ValueError('Invalid stop bit specification: %r' % self.
_stopbits
)
rfc2217.py
481
self._rfc2217_port_settings['stopsize'].set(struct.pack('!B', RFC2217_STOPBIT_MAP[self.
_stopbits
]))
[
all
...]
Completed in 788 milliseconds