OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_bytesize
(Results
1 - 6
of
6
) sorted by null
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/
serialcli.py
82
if self.
_bytesize
== FIVEBITS:
84
elif self.
_bytesize
== SIXBITS:
86
elif self.
_bytesize
== SEVENBITS:
88
elif self.
_bytesize
== EIGHTBITS:
91
raise ValueError("Unsupported number of data bits: %r" % self.
_bytesize
)
serialjava.py
83
if self.
_bytesize
== FIVEBITS:
85
elif self.
_bytesize
== SIXBITS:
87
elif self.
_bytesize
== SEVENBITS:
89
elif self.
_bytesize
== EIGHTBITS:
92
raise ValueError("unsupported bytesize: %r" % self.
_bytesize
)
serialwin32.py
137
if self.
_bytesize
== FIVEBITS:
139
elif self.
_bytesize
== SIXBITS:
141
elif self.
_bytesize
== SEVENBITS:
143
elif self.
_bytesize
== EIGHTBITS:
146
raise ValueError("Unsupported number of data bits: %r" % self.
_bytesize
)
serialposix.py
361
if self.
_bytesize
== 8:
363
elif self.
_bytesize
== 7:
365
elif self.
_bytesize
== 6:
367
elif self.
_bytesize
== 5:
370
raise ValueError('Invalid char len: %r' % self.
_bytesize
)
serialutil.py
258
self.
_bytesize
= None # correct value is assigned below through properties
357
self.
_bytesize
= bytesize
362
return self.
_bytesize
rfc2217.py
479
self._rfc2217_port_settings['datasize'].set(struct.pack('!B', self.
_bytesize
))
[
all
...]
Completed in 53 milliseconds